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

Textarea

Textarea component for multi-line text input with validation.

Examples


    <.textarea label="Message" placeholder="Enter your message" rows={4} />
    <.textarea label="Description" helper="Maximum 500 characters" rows={6} />
            
""" end end