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