Textarea
Multi-line input. Optional autosize grows the box with content instead of forcing a scrollbar.
Autosize
<Textarea id="bio" label="Bio" autosize />Fixed height
<Textarea id="msg" label="Message" rows="5" />Sizes
<Textarea id="note-sm" label="Small" size="sm" />
<Textarea id="note-lg" label="Large" size="lg" />Props
| Prop | Type | Default | Description |
|---|---|---|---|
rows | number | 4 | Initial height. |
autosize | boolean | false | Grows with content. |
| Plus the full TextField API. | |||
Accessibility
- Label wired; error sets
aria-invalid. - Autosize never removes manual resize; it adjusts height on input only.