@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.09 kB
JavaScript
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 StyledFolderBlankSolid = ({
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: "M24 6.75V20.25C24 21.4922 22.9922 22.5 21.75 22.5H2.25C1.00781 22.5 0 21.4922 0 20.25V3.75C0 2.50781 1.00781 1.5 2.25 1.5H9.75L12.75 4.5H21.75C22.9922 4.5 24 5.50781 24 6.75Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledFolderBlankSolid);
const FolderBlankSolid = /*#__PURE__*/memo(ForwardRef);
export default FolderBlankSolid;