@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.34 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function Cart({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Cart",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M1 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v2h9.266c1.336 0 2.169 1.435 1.495 2.578l-2.693 4.571c-.31.527-.88.851-1.496.851h-6.84A1.723 1.723 0 0 1 3 10.286V3H2a1 1 0 0 1-1-1Zm12.78 4H5v4h6.424l2.357-4Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M6 14.5a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Zm6 0a1.5 1.5 0 1 1-3 0 1.5 1.5 0 0 1 3 0Z",
shapeRendering: "geometricPrecision"
}));
}
Cart.displayName = 'Cart';
export default createBaseComponent(Cart);