@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 FlagCol = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 900 600",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 0h900v600H0z",
fill: "#fcd116"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 300h900v300H0z",
fill: "#003893"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 450h900v150H0z",
fill: "#ce1126"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagCol);
export default ForwardRef;