import { Box } from "@mui/material"; interface Props { color: string; width?: number; } export default function FlagIcon({ color, width = 30 }: Props) { return ( ); }