Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 43x | import { SvgIcon, SvgIconProps } from "@mui/material";
export default function CatalanFlagIcon(props: SvgIconProps) {
return (
<SvgIcon viewBox="0 0 12 9" {...props}>
<rect width="12" height="9" fill="#FCDD09" />
<rect x="0" y="1" width="12" height="1" fill="#DA121A" />
<rect x="0" y="3" width="12" height="1" fill="#DA121A" />
<rect x="0" y="5" width="12" height="1" fill="#DA121A" />
<rect x="0" y="7" width="12" height="1" fill="#DA121A" />
</SvgIcon>
);
}
|