@scaleflex/icons
Version:
SVG icons as React components
30 lines • 1.25 kB
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/objectWithoutProperties";
var _excluded = ["color", "size"];
import React from 'react';
import { intrinsicComponent } from './utils/functions';
export var Store = intrinsicComponent(function (_ref, ref) {
var _ref$color = _ref.color,
color = _ref$color === void 0 ? 'currentColor' : _ref$color,
_ref$size = _ref.size,
size = _ref$size === void 0 ? 14 : _ref$size,
rest = _objectWithoutProperties(_ref, _excluded);
return /*#__PURE__*/React.createElement("svg", _extends({
"data-icon-name": "Store",
ref: ref,
width: size,
height: size,
viewBox: "0 0 16 16",
fill: "none",
xmlns: "http://www.w3.org/2000/svg"
}, rest), /*#__PURE__*/React.createElement("path", {
d: "M0.888867 0.888916H15.1111V2.66671H0.888867V0.888916Z",
fill: color
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M0.888875 3.54173H15.1111L16 7.98618V9.76397H15.1111V15.0973H13.3333V9.76397H9.77775V15.0973H0.888875V9.76397H0V7.98618L0.888875 3.54173ZM2.66667 13.3195H8V9.76397H2.66667V13.3195Z",
fill: color
}));
});
export default Store;