Textarea
Textarea component documentation.
Usage
Loading...
import { Textarea } from "@aqqo/aqqo-ui";<Textarea>Content</Textarea>Examples
With label
Loading...
import { Label, Textarea } from "@aqqo/aqqo-ui";
<div className="grid w-full max-w-sm items-center gap-2">
<Label htmlFor="description">Description</Label>
<Textarea id="description" />
</div>Props
| Prop | Type | Default | Description |
|---|---|---|---|
className | string | - | Additional CSS classes for custom styling. |
...props | TextareaHTMLAttributes<HTMLTextAreaElement> | - | Standard HTML textarea attributes (placeholder, disabled, value, onChange, rows, etc.). |