@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
26 lines (24 loc) • 842 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagPri = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 900 600",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("g", {
fill: "#FFF"
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 0h900v600H0"
}), /*#__PURE__*/ React.createElement("path", {
stroke: "#E00",
strokeWidth: 120,
d: "M0 60h900m0 240H0m0 240h900"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#0050F0",
d: "M0 0v600l520-300"
}), /*#__PURE__*/ React.createElement("path", {
d: "M114 382l59-183 59 183L77 269h192"
})));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagPri);
export default ForwardRef;