@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
26 lines (24 loc) • 838 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagMkd = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 140 70",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#CE2028",
d: "M0 0h140v70H0z"
}), /*#__PURE__*/ React.createElement("path", {
fill: "#F9D616",
d: "M78.5 40L0 0h21zm-17-10L119 70h21zm0 10L119 0h21zm17-10L0 70h21zM70 35L0 28v14zm0 0l70-7v14zm0 0L63 0h14zm0 0l-7 35h14z"
}), /*#__PURE__*/ React.createElement("circle", {
cx: 70,
cy: 35,
r: 11.25,
fill: "#F9D616",
stroke: "#CE2028",
strokeWidth: 2.5
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagMkd);
export default ForwardRef;