import { Box, useTheme } from "@mui/material"; interface Props { color?: string; } export default function RadioCheck({ color = "#7E2AEA" }: Props) { const theme = useTheme(); return ( ); }