@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
22 lines (20 loc) • 707 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagGuf = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 900 600",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 0h900v600z",
fill: "#078930"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 0l900 600H0z",
fill: "#fcdd09"
}), /*#__PURE__*/ React.createElement("path", {
d: "M450 200l58.779 180.902-153.885-111.804h190.212L391.22 380.902z",
fill: "#da121a"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagGuf);
export default ForwardRef;