@nomercyicons/react
Version:
24 lines • 919 B
JavaScript
const React = require("react");
function EnvatoColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 42 48",
strokeWidth: 1.5,
stroke: "none",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fill: "#81B636",
fillRule: "evenodd",
d: "M35.607.263c2.15 1.055 10.896 19.93 3.435 36.368-5.993 13.2-21.035 13.201-28.66 8.55C3.867 41.206-6.08 28.682 4.933 13.39c.466-.58 1.584-.528 1.332 1.225C6.087 15.86 4.49 24.8 7.539 28.682c1.392 1.943 1.718.603 1.718.603S9.02 16.28 18.908 6.405C25.185.382 33.89-.58 35.608.262"
}));
}
const ForwardRef = React.forwardRef(EnvatoColorIcon);
module.exports = ForwardRef;