| 3 | import { cn } from "@repo/ui/utils"; |
| 4 | |
| 5 | export interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {} |
| 6 | |
| 7 | const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(({ className, ...props }, ref) => { |
| 8 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected