@nomercyicons/react
Version:
24 lines • 1.18 kB
JavaScript
import * as React from "react";
function ScoopitColorIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 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: "#66AD2B",
fillRule: "evenodd",
d: "M0 48V0h48v48H0zm31.356-33.523l.848 16.665c1.237-.024 3.285-.017 4.523-.005l.838-16.72.016-6.71h-6.228l.003 6.77zm-5.465-6.764l-6.207-.004.009 8.196-9.285-.001.014 12.052.002 12.067h6.164l-.018-19.865 3.11-.002-.006 14.26c0 .72.043 1.437.136 2.151.258 2.052 1.135 3.11 3.04 3.489 2.101.417 4.498.201 6.605-.024l.01-4.246c-.143.004-1.417.004-1.557 0-1.367-.047-1.997-.625-2.004-1.993l-.018-13.639 3.576.002.002-4.231-3.581-.002.008-8.21zm-9.344 0c-1.755.02-4.35.016-6.104 0l-.01 5.313h6.11l.004-5.313zm14.811 26.342v5.959h6.199v-5.959h-6.199z"
}));
}
const ForwardRef = React.forwardRef(ScoopitColorIcon);
export default ForwardRef;