| 2 | import clsx from 'clsx'; |
| 3 | |
| 4 | interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> { |
| 5 | error?: string; |
| 6 | } |
| 7 | |
| 8 | const Input: React.FC<InputProps> = ({ className, error, ...props }) => { |
| 9 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected