@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.32 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 = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Cart",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M2 3a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v4h12.033c1.502 0 2.448 1.647 1.712 2.98l-3.314 6A1.958 1.958 0 0 1 16.719 17H7.964C6.879 17 6 16.105 6 15V4H3a1 1 0 0 1-1-1Zm5.964 6v6h8.755l3.314-6H7.964Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M10 20a2 2 0 1 1-4 0 2 2 0 0 1 4 0Zm8 0a2 2 0 1 1-4 0 2 2 0 0 1 4 0Z",
shapeRendering: "geometricPrecision"
}));
}
Cart.displayName = 'Cart';
export default createBaseComponent(Cart);