@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
32 lines • 1.11 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const AddFolderIcon = ({
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: "M16.5 21h-9A4.5 4.5 0 0 1 3 16.5V5.812A2.813 2.813 0 0 1 5.813 3h1.51c1.434 0 2.57 1.028 3.32 2.25.43.7.662 1.17 1.357 1.607 1.088.684 3.554.823 5.63.803C19.44 7.643 21 9.064 21 10.875V16.5a4.5 4.5 0 0 1-4.5 4.5Z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M15 15.497h2.994m-1.498 1.497V14",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M3 11h18",
opacity: 0.4
}));
const ForwardRef = forwardRef(AddFolderIcon);
module.exports = ForwardRef;