@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
32 lines • 1.19 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const BackpackIcon = ({
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: "M6.5 7A2.5 2.5 0 0 0 4 9.5v7A4.5 4.5 0 0 0 8.5 21h7a4.5 4.5 0 0 0 4.5-4.5V9.366A2.366 2.366 0 0 0 17.634 7h-.317"
}), /*#__PURE__*/React.createElement("path", {
d: "M6 6a1 1 0 0 1 1-1h10a1 1 0 0 1 1 1v3a2 2 0 0 1-2 2H8a2 2 0 0 1-2-2z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M9 10v2M21 16c0 2 0 3-1 3M3 16c0 2 0 3 1 3M15 10v2"
}), /*#__PURE__*/React.createElement("path", {
d: "M17 21v-3a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v3"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M9 5V3.5a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1V5"
}));
const ForwardRef = forwardRef(BackpackIcon);
module.exports = ForwardRef;