Components
Loading preview...
A multi-line text input field with support for custom styling and states.
npx shadcn@latest add https://21st.dev/r/sean0205/textareaimport { Textarea } from '@/components/ui/textarea';
export default function TextareaDemo() {
return (
<div className="w-96">
<Textarea placeholder="Type your message here." disabled />
</div>
);
}