Textarea
Multi-line text input with optional label, character count, and max length.
Preview
Usage
import { Textarea } from '@ramtt/ui'
<Textarea label="Notes" placeholder="Session notes..." rows={4} />
<Textarea label="Bio" maxLength={500} showCount />Props
| Prop | Type | Default | Description |
|---|---|---|---|
| label | string | — | Field label |
| rows | number | 3 | Visible rows |
| maxLength | number | — | Max character count |
| showCount | boolean | false | Show character counter |
| placeholder | string | — | Placeholder text |
| disabled | boolean | false | Disable the textarea |