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