import { Box } from "@mui/material"; interface Props { height: string; width: string; color: string; } export default function QuestionIcon({ height, width ,color}: Props) { return ( ); }