| 3 | import { cn } from "@/lib/utils" |
| 4 | |
| 5 | export interface InputProps |
| 6 | extends React.InputHTMLAttributes<HTMLInputElement> {} |
| 7 | |
| 8 | const Input = React.forwardRef<HTMLInputElement, InputProps>( |
| 9 | ({ className, type, ...props }, ref) => { |
nothing calls this directly
no outgoing calls
no test coverage detected