@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
21 lines (19 loc) • 658 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagMar = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 900 600",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("path", {
fill: "#c1272d",
d: "M0 0h900v600H0z"
}), /*#__PURE__*/ React.createElement("path", {
d: "M450 224.315l-44.467 136.87 116.401-84.559h-143.87l116.403 84.559z",
fill: "none",
stroke: "#006233",
strokeWidth: 14.63
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagMar);
export default ForwardRef;