Function
Textarea
({ className, ...props }: React.ComponentProps<"textarea">)
Source from the content-addressed store, hash-verified
| 3 | import { cn } from "@/lib/utils" |
| 4 | |
| 5 | function Textarea({ className, ...props }: React.ComponentProps<"textarea">) { |
| 6 | return ( |
| 7 | <textarea |
| 8 | data-slot="textarea" |
| 9 | className={cn( |
| 10 | "border-input placeholder:text-muted-foreground focus-visible:border-ring focus-visible:ring-ring/50 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:bg-input/30 flex field-sizing-content min-h-16 w-full rounded-md border bg-transparent px-3 py-2 text-base shadow-xs transition-[color,box-shadow] outline-none focus-visible:ring-[3px] disabled:cursor-not-allowed disabled:opacity-50 md:text-sm", |
| 11 | className |
| 12 | )} |
| 13 | {...props} |
| 14 | /> |
| 15 | ) |
| 16 | } |
| 17 | |
| 18 | export { Textarea } |
Callers
nothing calls this directly
Tested by
no test coverage detected