This commit is contained in:
38
node_modules/@icons/material/ShoppingIcon.js
generated
vendored
Normal file
38
node_modules/@icons/material/ShoppingIcon.js
generated
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
'use strict';
|
||||
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
|
||||
var _extends = Object.assign || 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; };
|
||||
|
||||
var _react = require('react');
|
||||
|
||||
var _react2 = _interopRequireDefault(_react);
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _objectWithoutProperties(obj, keys) { var target = {}; for (var i in obj) { if (keys.indexOf(i) >= 0) continue; if (!Object.prototype.hasOwnProperty.call(obj, i)) continue; target[i] = obj[i]; } return target; }
|
||||
|
||||
var DEFAULT_SIZE = 24;
|
||||
|
||||
exports.default = function (_ref) {
|
||||
var _ref$fill = _ref.fill,
|
||||
fill = _ref$fill === undefined ? 'currentColor' : _ref$fill,
|
||||
_ref$width = _ref.width,
|
||||
width = _ref$width === undefined ? DEFAULT_SIZE : _ref$width,
|
||||
_ref$height = _ref.height,
|
||||
height = _ref$height === undefined ? DEFAULT_SIZE : _ref$height,
|
||||
_ref$style = _ref.style,
|
||||
style = _ref$style === undefined ? {} : _ref$style,
|
||||
props = _objectWithoutProperties(_ref, ['fill', 'width', 'height', 'style']);
|
||||
|
||||
return _react2.default.createElement(
|
||||
'svg',
|
||||
_extends({
|
||||
viewBox: '0 0 ' + DEFAULT_SIZE + ' ' + DEFAULT_SIZE,
|
||||
style: _extends({ fill: fill, width: width, height: height }, style)
|
||||
}, props),
|
||||
_react2.default.createElement('path', { d: 'M12,13C9.24,13 7,10.76 7,8H9C9,9.66 10.34,11 12,11C13.66,11 15,9.66 15,8H17C17,10.76 14.76,13 12,13M12,3C13.66,3 15,4.34 15,6H9C9,4.34 10.34,3 12,3M19,6H17C17,3.24 14.76,1 12,1C9.24,1 7,3.24 7,6H5C3.89,6 3,6.89 3,8V20C3,21.1 3.9,22 5,22H19C20.1,22 21,21.1 21,20V8C21,6.89 20.1,6 19,6Z' })
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user