| 1 | import { HTMLInputTypeAttribute } from "react"; |
| 2 | |
| 3 | interface Props { |
| 4 | value: string; |
| 5 | onChange?: (value: string) => void; |
| 6 | type?: HTMLInputTypeAttribute; |
| 7 | className?: string; |
| 8 | disabled?: boolean; |
| 9 | checked?: boolean; |
| 10 | } |
| 11 | |
| 12 | const getDefaultProps = () => ({ |
| 13 | value: "", |
nothing calls this directly
no outgoing calls
no test coverage detected