@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
24 lines (22 loc) • 723 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagPse = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 6 3",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#007A3D",
d: "M0 0h6v3H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#FFF",
d: "M0 0h6v2H0z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M0 0h6v1H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#CE1126",
d: "M0 0l2 1.5L0 3z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagPse);
export default ForwardRef;