You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
462 B
24 lines
462 B
import { |
|
Checkbox as MUICheckbox, |
|
checkboxClasses as muiCheckboxClasses, |
|
} from '@mui/material'; |
|
import { FC } from 'react'; |
|
|
|
import { GREY } from '../lib/consts/DEFAULT_THEME'; |
|
|
|
const Checkbox: FC<CheckboxProps> = ({ sx, ...checkboxProps }) => ( |
|
<MUICheckbox |
|
{...{ |
|
...checkboxProps, |
|
sx: { |
|
color: GREY, |
|
|
|
[`&.${muiCheckboxClasses.checked}`]: { color: GREY }, |
|
|
|
...sx, |
|
}, |
|
}} |
|
/> |
|
); |
|
|
|
export default Checkbox;
|
|
|