import { Box, SxProps } from "@mui/material"; type Props = { checked?: boolean; sx?: SxProps; }; export const TickOpenClose = ({ checked = false, sx }: Props) => { return ( ); };