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