UNPKG

@astraicons/react

Version:

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

23 lines 930 B
import * as React from "react"; function FolderIcon({ 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: "M2 17a5 5 0 0 0 5 5h10a5 5 0 0 0 5-5v-5.25H2V17m0-6.75h19.964c-.259-1.768-1.866-3.09-3.709-3.072C15.95 7.2 13.21 7.045 12 6.286c-.688-.433-.967-.894-1.357-1.538l-.15-.248C9.659 3.143 8.396 2 6.803 2H5.125A3.125 3.125 0 0 0 2 5.125v5.125M14.25 15a.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 = React.forwardRef(FolderIcon); export default ForwardRef;