@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
26 lines • 1.07 kB
JavaScript
const React = require("react");
function OpenFolderIcon({
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: "M21 11.38v-1.104 0c0-1.48-1.286-2.64-2.765-2.594-2.316.074-5.445-.025-6.735-.965-.734-.534-.978-1.11-1.432-1.965v0C9.268 3.242 7.919 2 6.21 2H4.97v0A2.97 2.97 0 0 0 2 4.969V18M15 16h2"
}), /*#__PURE__*/React.createElement("path", {
d: "M4.397 12.902 2.444 16.57C1.143 19.012 2.858 22 5.562 22h10.924c1.298 0 2.493-.729 3.117-1.902l1.953-3.667C22.857 13.988 21.142 11 18.438 11H7.514c-1.298 0-2.493.729-3.117 1.902Z"
}));
}
const ForwardRef = React.forwardRef(OpenFolderIcon);
module.exports = ForwardRef;