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

PropTypeDefaultDescription
placeholderstringPlaceholder text shown when the textarea is empty.
disabledbooleanfalseWhen true, prevents interaction and reduces opacity.
rowsnumberThe number of visible text lines.
classNamestringAdditional CSS classes to apply to the textarea element.