Textarea
A multi-line text input for longer form content. Supports all native textarea attributes with consistent styling.
Default
<Textarea placeholder="Write your message..." />Disabled
<Textarea disabled placeholder="Cannot edit this" rows={3} />With Field
Max 500 characters.
<Field>
<FieldLabel>Bio</FieldLabel>
<Textarea placeholder="Tell us about yourself..." rows={4} />
<FieldHint>Max 500 characters.</FieldHint>
</Field>API Reference
| Prop | Type | Default | Description |
|---|---|---|---|
placeholder | string | — | Placeholder text shown when the textarea is empty. |
disabled | boolean | false | When true, prevents interaction and reduces opacity. |
rows | number | — | The number of visible text lines. |
className | string | — | Additional CSS classes to apply to the textarea element. |