@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
34 lines • 1.15 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const ArchiveIcon = ({
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", {
d: "M3 11.5A2.5 2.5 0 0 1 5.5 9h1.577c.51 0 .923.413.923.923v.423a.5.5 0 0 0 .5.5h7a.5.5 0 0 0 .5-.5v-.423c0-.51.413-.923.923-.923H18.5a2.5 2.5 0 0 1 2.5 2.5v5a4.5 4.5 0 0 1-4.5 4.5h-9A4.5 4.5 0 0 1 3 16.5z"
}), /*#__PURE__*/React.createElement("rect", {
width: 6,
height: 2,
x: 9,
y: 14,
opacity: 0.4,
rx: 0.6
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M5 6.5V4.678C5 3.75 5.895 3 7 3h10c1.105 0 2 .751 2 1.678V6.5m-15 3v-1a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v1",
opacity: 0.4
}));
const ForwardRef = forwardRef(ArchiveIcon);
module.exports = ForwardRef;