@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.27 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 StyledFolderOpenSolid = ({
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: "M6.15833 9.66667H20V7.66667C20 6.5625 19.1042 5.66667 18 5.66667H11.3333L8.66667 3H2C0.895417 3 0 3.89542 0 5V18.6833L3.7725 11.1375C4.225 10.2333 5.14167 9.66667 6.15833 9.66667ZM22.6292 11H6.15833C5.65417 11 5.19167 11.2833 4.96667 11.7375L0 21.6667H18.6292C19.1342 21.6667 19.5958 21.3812 19.8217 20.9296L23.8217 12.9296C24.3 12.0417 23.6542 11 22.6292 11Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledFolderOpenSolid);
const FolderOpenSolid = /*#__PURE__*/memo(ForwardRef);
export default FolderOpenSolid;