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