@comfortdelgro/compass-icons
Version:
Icons for React Compass Design System
24 lines (22 loc) • 797 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FlagJam = (props, ref)=>/*#__PURE__*/ React.createElement("svg", {
width: "1em",
height: "1em",
viewBox: "0 0 12 6",
ref: ref,
...props
}, /*#__PURE__*/ React.createElement("defs", null, /*#__PURE__*/ React.createElement("clipPath", {
id: "jam_svg__a"
}, /*#__PURE__*/ React.createElement("path", {
d: "M0 0h12v6H0z"
}))), /*#__PURE__*/ React.createElement("path", {
fill: "#009b3a",
d: "M0 0h12v6H0z"
}), /*#__PURE__*/ React.createElement("path", {
stroke: "#fed100",
clipPath: "url(#jam_svg__a)",
d: "M-2-1v8l16-8v8z"
}));
const ForwardRef = /*#__PURE__*/ forwardRef(FlagJam);
export default ForwardRef;