import { Checkbox, } from '@material-ui/core'; import { InputOwnProps, } from './InputOwnProps'; import * as React from 'react'; export const Input: React.FunctionComponent = ({ children, color, defaultValue, type, value, ...props }) => { if (type === 'checkbox') { return ( {children} ); } return ( ); };