@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
22 lines (20 loc) • 714 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagCmr = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 900 600",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 0h400v600H0z",
fill: "#007a5e"
}), /*#__PURE__*/ React.createElement("path", {
d: "M300 0h400v600H300z",
fill: "#ce1126"
}), /*#__PURE__*/ React.createElement("path", {
d: "M600 0h300v600H600zM450 220l47 144.8-122.8-89.5h151.6L403 364.8z",
fill: "#fcd116"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagCmr);
export default ForwardRef;