import { Box, useTheme } from "@mui/material"; type CheckboxIconProps = { checked?: boolean; color?: string; }; export const CheckboxIcon = ({ checked = false, color = "#7E2AEA" }: CheckboxIconProps) => { const theme = useTheme(); return ( {checked && ( )} ); };