Textarea

Multi-line text input with optional label, hint, and error state

Category: inputs · WCAG 2.2-AA · form, text, multiline

States

Props

PropTypeDefaultDescription
labelstringText label for the control (standalone use). Omit it when wrapping the Textarea in a Field — the Field owns the label, and setting both double-labels the control.
hintstringSupplementary hint text shown with the control.
errorstringError message shown when the value is invalid.
rowsnumber4Number of visible text rows.
resize'none' | 'vertical' | 'both'verticalWhich directions the textarea can be resized ('none' | 'vertical' | 'both').
disabledbooleanfalseWhen true, disables the control and removes it from the tab order.

Design tokens

When to use

When not to use

How to build an accessible Textarea in React →

Examples

With label

<Textarea label="Message" placeholder="Type here…" />

With error

<Textarea label="Bio" error="Bio is required" />

Related components

← Back to docs