When to use
Use when the user needs more than one line of text.
Find components, patterns, tokens, and docs
Documentation
Textareas give room for prose, notes, and unstructured detail.
Set a sensible min-height. Don't force a tiny field that immediately overflows.
Appearance is not enough. This is the contract for when the control earns a place in the product.
Use when the user needs more than one line of text.
Use input for names, emails, and other single-line values.
Prevents users from fighting a single-line field when they have more to say.
Visible label, resizable without breaking the page, and errors linked to the field.
<Textarea
variant="primary"
size="medium"
width="full"
>
Description
</Textarea>