@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
28 lines (26 loc) • 866 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagSyc = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 900 450",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 450h900V0H0z",
fill: "#d62828"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 450V0h600z",
fill: "#fcd856"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 450V0h300z",
fill: "#003f87"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 450h900V150z",
fill: "#fff"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 450h900V300z",
fill: "#007a3d"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagSyc);
export default ForwardRef;