Textarea
---import { Textarea } from "@/components/starwind/textarea";---
<Textarea placeholder="Type something..." />
Installation
pnpx starwind@latest add textarea
npx starwind@latest add textarea
yarn dlx starwind@latest add textarea
Usage
size
---import { Textarea } from "@/components/starwind/textarea";---
<Textarea size="sm" placeholder="Small textarea" /><Textarea size="md" placeholder="Medium textarea" /><Textarea size="lg" placeholder="Large textarea" />
disabled
---import { Textarea } from "@/components/starwind/textarea";---
<Textarea disabled placeholder="Disabled textarea" />
API Reference
Prop | Type | Default |
---|---|---|
size | "sm" | "md" | "lg" | "md" |
The component also accepts all standard HTML attributes for the <textarea>
element.
Changelog
v1.1.0
tailwind-variants
now implemented. This usestailwind-merge
under the hood to merge Tailwind classes without style conflicts, allowing you to override any existing classes using the “class” prop.