Components
Loading preview...
A native textarea element with custom size options.
npx shadcn@latest add https://21st.dev/r/coss.com/textareaimport { Textarea } from "@/components/ui/component";
export default function TextareaSmall() {
return (
<div className="flex items-center justify-center w-full min-h-screen bg-background p-8">
<div className="w-full max-w-sm">
<Textarea placeholder="Type your message here" size="sm" />
</div>
</div>
);
}