optimall-icons
Version:
Biblioteca de ícones do Optimall
29 lines • 2.65 kB
JavaScript
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
import React, { forwardRef } from 'react';
export const ShoppingBasketIcon = /*#__PURE__*/forwardRef(({
className,
style,
ariaLabel,
size = 24,
width,
height,
...props
}, ref) => {
const iconSize = width || height || size;
return /*#__PURE__*/React.createElement("svg", _extends({
ref: ref,
className: className,
"aria-label": ariaLabel || "shopping, basket",
style: style,
width: width || iconSize,
height: height || iconSize,
viewBox: "0 0 24 24",
fill: "currentColor",
xmlns: "http://www.w3.org/2000/svg"
}, props), /*#__PURE__*/React.createElement("path", {
d: "M14.598 2.195a.9.9 0 0 1 1.207.402L18.056 7.1h2.14c.3 0 .57 0 .793.015.227.015.482.051.736.163.415.183.739.466.941.843.195.36.24.737.234 1.05-.006.31-.063.611-.117.855l-.15.639a1.384 1.384 0 0 1-.764.962 1.03 1.03 0 0 0-.59.743l-.593 3.374c-.112.64-.223 1.674-.45 2.56-.236.916-.648 1.934-1.524 2.638l-.003.003c-.66.525-1.429.75-2.322.854-.872.103-1.966.102-3.32.102h-2.134c-1.354 0-2.447 0-3.32-.102-.892-.105-1.662-.329-2.322-.854l-.002-.003c-.876-.704-1.288-1.722-1.524-2.639-.227-.885-.338-1.92-.45-2.56l-.593-3.373a1.032 1.032 0 0 0-.589-.743 1.384 1.384 0 0 1-.764-.962c-.05-.233-.08-.32-.15-.64A4.32 4.32 0 0 1 1.1 9.17c-.006-.312.04-.688.233-1.05.203-.376.527-.66.942-.842l.19-.07c.189-.058.376-.082.546-.093.223-.015.493-.015.792-.015h3.421l1.951-4.46a.9.9 0 0 1 1.649.72l-3.5 8a.9.9 0 1 1-1.649-.72l.761-1.74H3.804c-.325 0-.523 0-.67.01-.136.01-.156.025-.136.016a.301.301 0 0 0-.075.044l-.004.004a.404.404 0 0 0-.018.164c.002.127.027.288.073.495.023.102.049.204.076.316.012.046.022.096.033.145a2.82 2.82 0 0 1 1.412 1.964l.592 3.375c.149.844.214 1.614.421 2.422.2.775.481 1.34.905 1.682l.115.084c.283.188.665.316 1.296.39.742.088 1.712.09 3.11.09h2.134c1.397 0 2.367-.002 3.11-.09.72-.085 1.116-.24 1.41-.474.424-.343.706-.907.905-1.682.207-.808.272-1.578.42-2.422l.593-3.375a2.82 2.82 0 0 1 1.41-1.964l.035-.145c.027-.112.053-.214.076-.316.046-.207.07-.368.073-.495a.628.628 0 0 0-.009-.129l-.01-.035-.003-.004A.313.313 0 0 0 21 8.925c.022.01.003-.006-.134-.015-.147-.01-.346-.01-.67-.01H11.5a.9.9 0 0 1 0-1.8h4.544l-1.848-3.698-.037-.084a.9.9 0 0 1 .44-1.123Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M14.091 11.104a.901.901 0 0 1 0 1.791L14 12.9h-4a.901.901 0 0 1 0-1.8h4l.091.004Z"
}));
});
export default ShoppingBasketIcon;