UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

22 lines 1.05 kB
const React = require("react"); const { forwardRef } = require("react"); const FolderIcon = ({ title, titleId, ...props }, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M2.25 5.813A3.563 3.563 0 0 1 5.813 2.25h1.51c1.82 0 3.155 1.298 3.96 2.607l.134.221c.357.586.52.853.982 1.144.39.246 1.131.44 2.132.556.968.112 2.069.142 3.091.132 1.994-.019 3.778 1.405 4.082 3.368a.8.8 0 0 0-.204-.028h-19a.8.8 0 0 0-.25.043zm0 5.894V16.5c0 2.9 2.35 5.25 5.25 5.25h9c2.9 0 5.25-2.35 5.25-5.25v-4.793a.8.8 0 0 1-.25.043h-19a.8.8 0 0 1-.25-.043m12 3.293a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75", clipRule: "evenodd" })); const ForwardRef = forwardRef(FolderIcon); module.exports = ForwardRef;