@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 1.38 kB
JavaScript
import * as React from "react";
function OpenFolderIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M20.864 11.113V10.3c0-1.78-1.517-3.13-3.218-3.074-1.038.033-2.24.026-3.316-.091-1.114-.122-1.955-.35-2.383-.665-.46-.338-.628-.663-.973-1.327q-.06-.116-.128-.246C10.061 3.4 8.651 2 6.736 2H5.608c-1.867 0-3.38 1.531-3.38 3.42v11.204C1.37 19.163 3.033 22 5.561 22h10.924c1.298 0 2.493-.792 3.117-2.067l1.953-3.985c.837-1.707.426-3.66-.692-4.835M5.608 3.379A2.03 2.03 0 0 0 3.59 5.42v8.338l.806-1.644c.624-1.275 1.82-2.067 3.117-2.067h10.924c.374 0 .73.062 1.06.176-.043-.908-.846-1.649-1.809-1.618-1.067.034-2.34.03-3.505-.098-1.128-.123-2.295-.372-3.04-.921-.73-.538-1.043-1.148-1.375-1.795l-.128-.247C8.971 4.263 7.93 3.38 6.736 3.38zm8.438 12.184c0-.38.305-.69.681-.69h1.819c.376 0 .681.31.681.69 0 .381-.305.69-.681.69h-1.819a.686.686 0 0 1-.681-.69",
clipRule: "evenodd"
}));
}
const ForwardRef = React.forwardRef(OpenFolderIcon);
export default ForwardRef;