({ className, ...props })
| 7 | type Props = ComponentProps<'input'>; |
| 8 | |
| 9 | export const Input: FC<Props> = ({ className, ...props }) => ( |
| 10 | <input className={variants('input', { className })} {...props} /> |
| 11 | ); |
nothing calls this directly
no outgoing calls
no test coverage detected