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.11 kB
import * as React from "react"; import { forwardRef } from "react"; const ExiteFolderIcon = ({ 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: "M14.907 13.908a.75.75 0 0 1 1.06 0l.53.528.527-.528a.75.75 0 0 1 1.061 1.06l-.528.53.528.527a.75.75 0 0 1-1.061 1.06l-.528-.527-.528.528a.75.75 0 0 1-1.06-1.061l.527-.528-.528-.528a.75.75 0 0 1 0-1.06M5.813 2.25A3.56 3.56 0 0 0 2.25 5.813v4.437H21.7c-.317-1.949-2.093-3.359-4.078-3.34-1.022.01-2.123-.02-3.091-.132-1-.117-1.741-.31-2.132-.556-.463-.29-.625-.558-.982-1.144l-.135-.22c-.804-1.31-2.138-2.608-3.959-2.608zm15.937 9.5H2.25v4.75c0 2.9 2.35 5.25 5.25 5.25h9c2.9 0 5.25-2.35 5.25-5.25z", clipRule: "evenodd" })); const ForwardRef = forwardRef(ExiteFolderIcon); export default ForwardRef;