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 kB
const React = require("react"); const { forwardRef } = require("react"); const RemoveFolderIcon = ({ 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.25 15.497a.75.75 0 0 1 .75-.75h2.994a.75.75 0 0 1 0 1.5H15a.75.75 0 0 1-.75-.75M5.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(RemoveFolderIcon); module.exports = ForwardRef;