frontAnswerer/src/ui_kit/CustomCheckbox.tsx

42 lines
1.0 KiB
TypeScript
Raw Normal View History

2023-12-16 14:55:56 +00:00
import { FormControlLabel, Checkbox, useTheme, Box, useMediaQuery } from "@mui/material";
import React from "react";
import { CheckboxIcon } from "@icons/Checkbox";
import type { SxProps } from "@mui/material";
interface Props {
label: string;
handleChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
checked?: boolean;
sx?: SxProps;
dataCy?: string;
}
export default function CustomCheckbox({ label, handleChange, checked, sx, dataCy }: Props) {
const theme = useTheme();
const isMobile = useMediaQuery(theme.breakpoints.down(790));
return (
<FormControlLabel
control={
<Checkbox
sx={{ padding: "0px 13px 1px 11px" }}
disableRipple
icon={<CheckboxIcon />}
checkedIcon={<CheckboxIcon checked />}
onChange={handleChange}
checked={checked}
data-cy={dataCy}
/>
}
label={label}
sx={{
color: theme.palette.grey2.main,
height: "26px",
...sx,
}}
/>
);
}