@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
22 lines (20 loc) • 667 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagCog = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 900 600",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#009543",
d: "M0 0h900v600H0z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 600L600 0h300v600z",
fill: "#fbde4a"
}), /*#__PURE__*/ React.createElement("path", {
d: "M900 0v600H300z",
fill: "#dc241f"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagCog);
export default ForwardRef;