@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
22 lines (20 loc) • 669 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagGin = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 900 600",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#ce1126",
d: "M0 0h900v600H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#fcd116",
d: "M300 0h600v600H300z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#009460",
d: "M600 0h300v600H600z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagGin);
export default ForwardRef;