@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.55 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const InventoryIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M21.38 5.376c.24-.307.37-.686.37-1.076a2.06 2.06 0 0 0-2.06-2.06H4.31A2.06 2.06 0 0 0 2.25 4.3c0 .39.13.769.37 1.076l2.383 3.055-2.094 2.094a2.25 2.25 0 0 0-.659 1.591v6.38A3.75 3.75 0 0 0 6 22.245h12a3.75 3.75 0 0 0 3.75-3.75v-6.38a2.25 2.25 0 0 0-.66-1.59L18.997 8.43zm-17.41 6.21a.8.8 0 0 0-.116.154l2.981.004c.344 0 .68.103.966.293l1.747 1.16c.04.028.09.042.139.042h4.896q.076 0 .139-.042l1.747-1.16c.287-.19.623-.292.967-.292h2.712a.8.8 0 0 0-.118-.16l-2.34-2.34H6.31zM20.25 4.3a.56.56 0 0 0-.56-.56h-3.42l-.714.588c-.345.284-.797.411-1.222.411H9.666c-.425 0-.877-.127-1.222-.41l-.714-.59H4.31a.56.56 0 0 0-.56.56q0 .087.053.155L6.29 7.643a.25.25 0 0 0 .197.096h11.024a.25.25 0 0 0 .197-.096l2.488-3.189a.25.25 0 0 0 .053-.154M9 16.74a.755.755 0 0 0-.75.755.75.75 0 1 0 1.5-.006.75.75 0 0 0-.75-.75m3 0a.755.755 0 0 0-.75.755.75.75 0 1 0 1.5-.006.75.75 0 0 0-.75-.75m3 0a.755.755 0 0 0-.75.755.75.75 0 1 0 1.5-.006.75.75 0 0 0-.75-.75",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(InventoryIcon);
export default ForwardRef;