All files / app/components/Icons CatalanFlagIcon.tsx

50% Statements 1/2
100% Branches 0/0
0% Functions 0/1
50% Lines 1/2

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 1443x                          
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>
  );
}