Copy to clipboard
Installation
Copy to clipboard
npx bearnie add textarea
npx bearnie add textarea
bunx bearnie add textarea
bunx bearnie add textarea
pnpm dlx bearnie add textarea
pnpm dlx bearnie add textarea
yarn dlx bearnie add textarea
yarn dlx bearnie add textarea
Copy to clipboard
import Textarea from "@/components/ui/textarea/Textarea.astro";
import Label from "@/components/ui/label/Label.astro";
Usage
import { Textarea } from "@/components/ui/textarea"
<Textarea placeholder="Type here..." />
Examples
With label
Copy to clipboard
Disabled
Copy to clipboard
With button
Copy to clipboard
Anatomy
Textarea- A single multi-line input element
Props
Textarea
| Prop | Type | Default | Description |
|---|---|---|---|
| placeholder | string | - | Placeholder text |
| disabled | boolean | false | Disables the textarea |
| required | boolean | false | Makes the field required |
| invalid | boolean | false | Shows error state |
| name | string | - | Form field name |
| id | string | - | Element ID |
| rows | number | 4 | Number of visible rows |
| value | string | - | Textarea value |
| class | string | - | Additional CSS classes |