@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
31 lines (29 loc) • 968 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagPak = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 120 80",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M-75-40H45v80H-75z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#01411C",
d: "M-45-40h90v80h-90z"
}), /*#__PURE__*/ React.createElement("circle", {
r: 24,
fill: "#fff"
}), /*#__PURE__*/ React.createElement("circle", {
r: 22,
cx: -7,
cy: -40,
fill: "#01411C",
transform: "rotate(-41.634 45 -40)"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#fff",
d: "M8.751-17.959l10.11 11.373L3.997-9.844l13.94-6.1-7.692 13.129z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagPak);
export default ForwardRef;