@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
31 lines • 1.36 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const ShopIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M3 9.704V16.5A4.5 4.5 0 0 0 7.5 21l9 .002a4.5 4.5 0 0 0 4.5-4.5v-6.8"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M10 19v-4a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v4",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M12 7.62c.1 1.333 1.127 2.35 2.351 2.378q.22.005.443 0c1.223-.03 2.25-1.046 2.35-2.377v.051c.12 1.396 1.265 2.43 2.57 2.32.77.03 1.499-.371 1.923-1.06s.48-1.565.15-2.31l-.906-1.908A3 3 0 0 0 18.171 3H5.83a3 3 0 0 0-2.711 1.714l-.906 1.908c-.33.745-.273 1.62.15 2.31.424.688 1.152 1.09 1.922 1.06 1.306.11 2.451-.924 2.573-2.32v-.051c.1 1.331 1.126 2.348 2.35 2.377q.22.005.44 0C10.874 9.969 11.9 8.952 12 7.62m0 0V7.5"
}));
const ForwardRef = forwardRef(ShopIcon);
module.exports = ForwardRef;