@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.28 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 StyledFoldersSolid = ({
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.8 6.4H13.6L11.2 4H6.4C5.40625 4 4.6 4.80625 4.6 5.8V15.4C4.6 16.3937 5.40625 17.2 6.4 17.2H20.8C21.7937 17.2 22.6 16.3937 22.6 15.4V8.2C22.6 7.20625 21.7937 6.4 20.8 6.4ZM18.1 20.8H5.5C3.01863 20.8 1 18.7825 1 16.3V7.3C1 6.805 1.40312 6.4 1.9 6.4C2.39687 6.4 2.8 6.805 2.8 7.3V16.3C2.8 17.7887 4.01125 19 5.5 19H18.1C18.5969 19 19 19.4031 19 19.9C19 20.3969 18.5987 20.8 18.1 20.8Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledFoldersSolid);
const FoldersSolid = /*#__PURE__*/memo(ForwardRef);
export default FoldersSolid;