Spaces:
Paused
Paused
| import * as React from "react"; | |
| import { cn } from "@/lib/utils"; | |
| function Textarea({ className, ...props }: React.ComponentProps<"textarea">) { | |
| return ( | |
| <textarea | |
| data-slot="textarea" | |
| className={cn( | |
| "border-input placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-ring/50 flex min-h-32 w-full rounded-[24px] border bg-white/90 px-4 py-3 text-sm shadow-sm outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50", | |
| className, | |
| )} | |
| {...props} | |
| /> | |
| ); | |
| } | |
| export { Textarea }; | |