Textarea
A multi-line text input for longer form content.
Import
Usage
Textarea Props
| Attribute | Type | Default | Description |
|---|---|---|---|
| placeholder | string | - | Placeholder text for the textarea. |
| disabled | boolean | false | Whether the textarea is disabled. |
| value | string | - | The controlled value of the textarea. |
| onChange | (event: ChangeEvent<HTMLTextAreaElement>) => void | - | Callback when the textarea value changes. |
| rows | number | - | Number of visible text rows. |
| className | string | - | Additional CSS classes for styling. |

