@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
22 lines (20 loc) • 668 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagIrl = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 1200 600",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#169b62",
d: "M0 0h1200v600H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M400 0h800v600H400z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#ff883e",
d: "M800 0h400v600H800z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagIrl);
export default ForwardRef;