import { Checkbox as MuiCheckbox } from "@material-ui/core"; import { CheckboxProps as MuiCheckboxProps } from "@material-ui/core/Checkbox"; import React from "react"; export type CheckboxProps = Omit< MuiCheckboxProps, "checkedIcon" | "color" | "icon" | "indeterminateIcon" | "classes" | "onClick" > & { disableClickPropagation?: boolean; }; const Checkbox: React.FC = props => { const { disableClickPropagation, ...rest } = props; return ( event.stopPropagation() : undefined } /> ); }; Checkbox.displayName = "Checkbox"; export default Checkbox;