@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.55 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 StyledFoldersRegular = ({
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.2 6.4H14.9462L13.1035 4.70312C12.6512 4.25275 12.0437 4 11.4062 4H7C5.67625 4 4.6 5.07475 4.6 6.4V14.8C4.6 16.1252 5.67437 17.2 7 17.2H20.2C21.5256 17.2 22.6 16.1252 22.6 14.8V8.8C22.6 7.47625 21.5237 6.4 20.2 6.4ZM20.8 14.8C20.8 15.1309 20.5308 15.4 20.2 15.4H7C6.66917 15.4 6.4 15.1309 6.4 14.8V6.4C6.4 6.0691 6.66917 5.8 7 5.8H11.4062C11.5665 5.8 11.7172 5.8624 11.8304 5.9758L14.2 8.2H20.2C20.5308 8.2 20.8 8.4691 20.8 8.8V14.8ZM18.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(StyledFoldersRegular);
const FoldersRegular = /*#__PURE__*/memo(ForwardRef);
export default FoldersRegular;