Usage
import { Textarea } from "@/components/ui/textarea"
<Textarea placeholder="Type your message here." />
Examples
import { Textarea } from '@/components/ui/textarea';
export function TextareaPreview() {
return <Textarea placeholder="Type your message here." className="max-w-md" />;
}