defmodule PyrauiWeb.DocsLive.InputDocs do use PyrauiWeb, :html def render(assigns) do ~H"""

Input

Input field component with validation states and helper text.

Examples


    <.input type="text" label="Name" placeholder="Enter your name" />
    <.input type="email" label="Email" helper="We'll never share your email" />
    <.input type="password" label="Password" error="Password is required" />
            
""" end end