feat(striker-ui): customize MUI Checkbox
This commit is contained in:
parent
65871e32c7
commit
2247d89451
29
striker-ui/components/Checkbox.tsx
Normal file
29
striker-ui/components/Checkbox.tsx
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
import {
|
||||||
|
Checkbox as MUICheckbox,
|
||||||
|
checkboxClasses as muiCheckboxClasses,
|
||||||
|
CheckboxProps as MUICheckboxProps,
|
||||||
|
} from '@mui/material';
|
||||||
|
import { FC } from 'react';
|
||||||
|
|
||||||
|
import { GREY } from '../lib/consts/DEFAULT_THEME';
|
||||||
|
|
||||||
|
type CheckboxProps = MUICheckboxProps;
|
||||||
|
|
||||||
|
const Checkbox: FC<CheckboxProps> = ({ sx, ...checkboxProps }) => (
|
||||||
|
<MUICheckbox
|
||||||
|
{...{
|
||||||
|
...checkboxProps,
|
||||||
|
sx: {
|
||||||
|
color: GREY,
|
||||||
|
|
||||||
|
[`&.${muiCheckboxClasses.checked}`]: { color: GREY },
|
||||||
|
|
||||||
|
...sx,
|
||||||
|
},
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
|
||||||
|
export type { CheckboxProps };
|
||||||
|
|
||||||
|
export default Checkbox;
|
Loading…
Reference in New Issue
Block a user