A native textarea element with custom size options.
import { Textarea } from "@/components/ui/component"; export default function TextareaLarge() { 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="lg" /> </div> </div> ); }
Part of coss — browse the full library on 21st.dev.