# Textarea Component API A multi-line text input component for longer content. --- ## Installation ```toml # Cargo.toml [dependencies] shadcn-ui-leptos-textarea = "0.7" ``` ```rust use shadcn_ui_leptos_textarea::Textarea; ``` --- ## Component API ### Textarea | Prop | Type | Default | Description | |------|------|---------|-------------| | `value` | `MaybeProp` | `None` | Current value | | `on_change` | `Option>` | `None` | Change handler | | `placeholder` | `MaybeProp` | `None` | Placeholder text | | `disabled` | `Signal` | `false` | Disable textarea | | `rows` | `MaybeProp` | `3` | Number of rows | | `class` | `MaybeProp` | `None` | Additional CSS classes | | `id` | `MaybeProp` | `None` | Unique identifier | | `style` | `Signal