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