← Components

Textarea

stable

Multi-line text field. Inherits all native textarea props.

shell
pnpm dlx shadcn@latest add @webzenia/textarea
preview
states
defaultfocus (ring)disabled
props
…HTMLTextareaPropsTextareaHTMLAttributes
All native textarea attributes pass through.
accessibility
·

Pair with a label; set rows for a sensible default height.

usage
tsx
import { Textarea } from "@/components/ui/textarea"

<Textarea rows={4} placeholder="Message" />