110k
New

Textarea

Displays a form textarea or a component that looks like a textarea.

Component textarea-demo not found in registry.

Installation

pnpm dlx createui@latest add textarea

Usage

import { Textarea } from "@/components/ui/textarea"
<Textarea />

Examples

Field

Use Field, FieldLabel, and FieldDescription to create a textarea with a label and description.

Component textarea-field not found in registry.

Disabled

Use the disabled prop to disable the textarea. To style the disabled state, add the data-disabled attribute to the Field component.

Component textarea-disabled not found in registry.

Invalid

Use the aria-invalid prop to mark the textarea as invalid. To style the invalid state, add the data-invalid attribute to the Field component.

Component textarea-invalid not found in registry.

Button

Pair with Button to create a textarea with a submit button.

Component textarea-button not found in registry.