UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

31 lines 1.39 kB
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.121c0-.398.158-.779.44-1.06L6 8.5h12l2.56 2.56a1.5 1.5 0 0 1 .44 1.061V18.5a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3z" }), /*#__PURE__*/React.createElement("path", { d: "M21 4.305a1 1 0 0 1-.212.615L18.3 8.11a1 1 0 0 1-.788.385H6.488A1 1 0 0 1 5.7 8.11L3.212 4.92A1 1 0 0 1 3 4.305c0-.724.587-1.31 1.31-1.31h15.38c.723 0 1.31.586 1.31 1.31Z" }), /*#__PURE__*/React.createElement("path", { d: "M8.921 3.755 8 2.995h8l-.921.76c-.185.152-.458.24-.745.24H9.666c-.287 0-.56-.088-.745-.24Z" }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", d: "M21 12.5h-3.563a1 1 0 0 0-.554.167l-1.747 1.16a1 1 0 0 1-.553.168H9.687a1 1 0 0 1-.554-.167l-1.747-1.161a1 1 0 0 0-.552-.167L3 12.495M12 17.5v-.005M15 17.5v-.005M9 17.5v-.005", opacity: 0.4 })); const ForwardRef = forwardRef(InventoryIcon); module.exports = ForwardRef;