UNPKG

@ucam/design-system

Version:
12 lines (11 loc) 522 B
import { FC } from 'react'; import { CheckboxProps as MuiCheckboxProps } from '@material-ui/core'; declare type CheckboxLabel = { /** * A text label to be display alongside the Checkbox element */ label?: string; }; declare type CheckboxProps = CheckboxLabel & Omit<MuiCheckboxProps, 'classes' | 'icon' | 'checkedIcon' | 'indeterminateIcon' | 'slot' | 'disableRipple' | 'disableTouchRipple' | 'disableFocusRipple' | 'size'>; declare const Checkbox: FC<CheckboxProps>; export default Checkbox;