@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
32 lines • 1.27 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const FolderCloudIcon = ({
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: "M10.5 21h-3A4.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.875v3.375"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M3 11h18",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M19.5 17.727c0-.23-.194-2.727-2.5-2.727s-2.5 2.497-2.5 2.727-1.5.271-1.5 1.886c0 1.08.718 1.33 1.192 1.377.271.027.545-.002.817-.002h3.981c.273 0 .547.03.818.002.474-.046 1.192-.296 1.192-1.377 0-1.615-1.5-1.655-1.5-1.886",
opacity: 0.4
}));
const ForwardRef = forwardRef(FolderCloudIcon);
export default ForwardRef;