@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
27 lines (25 loc) • 872 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagGuy = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 1000 600",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#009e49",
d: "M0 0h1000v600H0z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 0l1000 300L0 600z",
fill: "#fff"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 26.1L912 300 0 573.9z",
fill: "#fcd116"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 0l500 300L0 600z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 35l441.7 265L0 565z",
fill: "#ce1126"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagGuy);
export default ForwardRef;