Textarea

When to use

Use for multi-line text input. descriptions, notes, comments.

Guidelines

  • Visible height signals length: A taller textarea tells users longer text is expected.
  • Auto-resize: Use the autoResize prop so the field grows with content.
  • Character count: Show remaining characters if there is a limit.

How it works