The textarea component renders a textarea input. It behaves in the same way as the Input component, so the two can be used interchangeably for different types of input with few changes.
<div> <Textarea placeholder="Not a stack" /> <Textarea placeholder="Has an error" error /> <Textarea.Stack label="Is a stack" /> <Textarea.Stack label="Has help text" help="Help text!" /> <Textarea.Stack label="Has an error" error="Error text" /> <Textarea.Stack label="Has both" help="Help text!" error="Error text" /></div>