@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
30 lines • 1.37 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const InventoryIcon = ({
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 12.127c0-.398.158-.78.44-1.061L6 8.506h12l2.56 2.56a1.5 1.5 0 0 1 .44 1.06v6.38a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3z"
}), /*#__PURE__*/React.createElement("path", {
d: "M21 4.31a1 1 0 0 1-.212.616L18.3 8.116a1 1 0 0 1-.788.384H6.488a1 1 0 0 1-.788-.385l-2.488-3.19A1 1 0 0 1 3 4.312C3 3.587 3.587 3 4.31 3h15.38c.723 0 1.31.587 1.31 1.31Z"
}), /*#__PURE__*/React.createElement("path", {
d: "M8.921 3.76 8 3h8l-.921.76c-.185.152-.458.24-.745.24H9.666c-.287 0-.56-.088-.745-.24Z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M21 12.505h-3.563a1 1 0 0 0-.554.167l-1.747 1.161a1 1 0 0 1-.553.167H9.687a1 1 0 0 1-.554-.167l-1.747-1.161a1 1 0 0 0-.552-.167L3 12.5M12 17.505V17.5M15 17.505V17.5M9 17.506V17.5"
}));
const ForwardRef = forwardRef(InventoryIcon);
module.exports = ForwardRef;