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