import * as React from 'react'; const Checkbox = (props: React.InputHTMLAttributes) => ( ); Checkbox.defaultProps = { checked: false, }; export default Checkbox;