UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.47 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 StyledFolderBlankRegular = ({ 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: "M20.9578 4.5H12.8906L10.6266 2.37891C10.0641 1.81594 9.30468 1.5 8.50781 1.5H2.95781C1.30078 1.5 -0.0421906 2.84344 -0.0421906 4.5V19.5C-0.0421906 21.1566 1.30078 22.5 2.95781 22.5H20.9578C22.6148 22.5 23.9578 21.1566 23.9578 19.5V7.5C23.9578 5.84531 22.6547 4.5 20.9578 4.5ZM21.7078 19.5C21.7078 19.9136 21.3713 20.25 20.9578 20.25H2.95781C2.54428 20.25 2.20781 19.9136 2.20781 19.5V4.5C2.20781 4.08637 2.54428 3.75 2.95781 3.75H8.46562C8.66592 3.75 8.85435 3.828 8.99578 3.96975L11.9578 6.75H20.9578C21.3713 6.75 21.7078 7.08637 21.7078 7.5V19.5Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledFolderBlankRegular); const FolderBlankRegular = /*#__PURE__*/memo(ForwardRef); export default FolderBlankRegular;