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