Files
shadcn-ui/apps/www/components/examples/textarea/disabled.tsx
2023-01-24 19:51:29 +04:00

6 lines
161 B
TypeScript

import { Textarea } from "@/components/ui/textarea"
export function TextareaDisabled() {
return <Textarea placeholder="Type your message here." disabled />
}