@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
22 lines (20 loc) • 665 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagBol = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 1100 750",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#007934",
d: "M0 0h1100v750H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#F9E300",
d: "M0 0h1100v500H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#D52B1E",
d: "M0 0h1100v250H0z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagBol);
export default ForwardRef;