UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.29 kB
import React, { forwardRef, memo } from "react"; import { AccessibleIcon } from "../accessible-icon"; import { StyledSvg, StyledPath } from "../styles"; import { jsx as _jsx } from "react/jsx-runtime"; const StyledFolderMinusSolid = ({ label, color = "#000000", className = "", css = {}, viewBox = "0 0 24 24" }, ref) => { return /*#__PURE__*/_jsx(AccessibleIcon, { label: label, children: /*#__PURE__*/_jsx(StyledSvg, { className: className, css: css, viewBox: viewBox, xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", ref: ref, children: /*#__PURE__*/_jsx(StyledPath, { css: { fill: `${color}` }, d: "M21.75 4.5H12.75L9.75 1.5H2.25C1.00781 1.5 0 2.50781 0 3.75V20.25C0 21.4922 1.00781 22.5 2.25 22.5H21.75C22.9922 22.5 24 21.4922 24 20.25V6.75C24 5.50781 22.9922 4.5 21.75 4.5ZM15.75 14.5828H8.20781C7.62656 14.5828 7.125 14.1234 7.125 13.5C7.125 12.8784 7.62844 12.4172 8.20781 12.4172H15.7078C16.3734 12.375 16.875 12.8766 16.875 13.5C16.875 14.1234 16.3734 14.5828 15.75 14.5828Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledFolderMinusSolid); const FolderMinusSolid = /*#__PURE__*/memo(ForwardRef); export default FolderMinusSolid;