@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 848 B
JavaScript
const React = require("react");
function FolderIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M17 22H7a5 5 0 0 1-5-5V5.125C2 3.399 3.4 2 5.125 2h1.678c1.593 0 2.856 1.143 3.69 2.5.477.778.734 1.3 1.507 1.786 1.209.76 3.948.914 6.255.892C20.267 7.158 22 8.738 22 10.75V17a5 5 0 0 1-5 5ZM2 11h20M15 15h2"
}));
}
const ForwardRef = React.forwardRef(FolderIcon);
module.exports = ForwardRef;