@nomercyicons/react
Version:
24 lines • 1.66 kB
JavaScript
const React = require("react");
function ShopifyColorIcon({
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: "#81BF37",
fillRule: "evenodd",
d: "M29.287 47.555l1.56-40.56 1.678 1.673s3.67.274 3.843.289a.463.463 0 01.418.39C36.82 9.587 42 44.791 42 44.791l-12.713 2.763zm-2.018.439l-.03.006L0 42.871s3.496-27.169 3.628-28.127c.175-1.265.217-1.307 1.554-1.729l4.31-1.343C10.416 7.74 13.36 0 19.52 0c.804 0 1.735.435 2.488 1.434.074-.005.15-.007.224-.007 2.643 0 4.146 2.263 4.998 4.726l1.427-.442a1.59 1.59 0 01.24-.05L27.27 47.994zM21.805 7.572c0-1.846-.248-3.216-.625-4.17-1.503.648-3.221 2.366-4.138 5.92l4.762-1.481.001-.269zM19.348 1.66c-4.424 0-6.909 5.839-7.955 9.42l3.763-1.171c.894-4.695 3.009-7.047 4.984-7.98a1.39 1.39 0 00-.792-.269zm1.062 20.933l1.82-5.44s-1.23-.717-3.72-.717c-6.463 0-9.665 4.338-9.665 8.82 0 5.326 5.288 5.471 5.288 8.713 0 .783-.552 1.855-1.906 1.855-2.074 0-4.533-2.12-4.533-2.12L6.442 37.86s2.391 2.925 7.067 2.925c3.898 0 6.787-2.949 6.787-7.527 0-5.82-6.445-6.773-6.445-9.258 0-.455.145-2.262 3.01-2.262 1.955 0 3.549.855 3.549.855zm3.009-15.255l2.304-.717c-.583-1.793-1.49-3.351-2.854-3.522.34.977.551 2.21.551 3.74l-.001.499z"
}));
}
const ForwardRef = React.forwardRef(ShopifyColorIcon);
module.exports = ForwardRef;