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