import React, { FC, memo, CSSProperties } from 'react'; import { FormGroup, Label, Input, InputProps } from 'reactstrap'; interface CheckboxProps extends InputProps { wrapperStyles?: CSSProperties; } const Checkbox: FC = ({ children, wrapperStyles, id, ...rest }) => { return ( ); }; export default memo(Checkbox);