| 5 | import { P, Code } from './UI'; |
| 6 | |
| 7 | interface InputProps { |
| 8 | style?: CSS.Properties; |
| 9 | type: string; |
| 10 | min?: string; |
| 11 | step?: string; |
| 12 | onChange: (e: React.ChangeEvent<HTMLInputElement>) => void; |
| 13 | value: string; |
| 14 | } |
| 15 | |
| 16 | const Input: React.VFC<InputProps> = ({ style, ...rest }) => ( |
| 17 | <Interactive |
nothing calls this directly
no outgoing calls
no test coverage detected