@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 1.21 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const DownloadFolderIcon = ({
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: "M20 11.5v-1.259c0-1.296-1.123-2.313-2.42-2.27-2.077.067-4.915-.014-6.08-.843-.657-.468-.875-.971-1.281-1.72C9.503 4.088 8.319 3 6.819 3H5.655A2.656 2.656 0 0 0 3 5.656V17"
}), /*#__PURE__*/React.createElement("path", {
d: "M5.157 12.73 3.4 16.061C2.228 18.285 3.772 21 6.206 21h9.831c1.168 0 2.244-.663 2.806-1.73l1.757-3.332C21.772 13.716 20.228 11 17.794 11H7.963c-1.168 0-2.244.663-2.806 1.73Z"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "m14 16-1.507 1.658a.667.667 0 0 1-.986 0L10 16M12 14v3.5"
}));
const ForwardRef = forwardRef(DownloadFolderIcon);
module.exports = ForwardRef;