@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.45 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 StyledFolderOpenRegular = ({
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: "M23.8583 12.9292L19.8583 20.9292C19.6333 21.3833 19.1708 21.6667 18.6292 21.6667H2.66667C1.19375 21.6667 0 20.4725 0 19V5.66667C0 4.19417 1.19375 3 2.66667 3H7.5625C8.26958 3 8.94792 3.28092 9.44833 3.78125L11.4958 5.66667H17.3333C18.8062 5.66667 20 6.86083 20 8.33333V9.66667H18V8.33333C18 7.96567 17.7009 7.66667 17.3333 7.66667H10.6667L8.03333 5.19542C7.90833 5.06917 7.74167 5 7.5625 5H2.66667C2.29917 5 2 5.29917 2 5.66667V17.6667L4.965 11.7375C5.19167 11.2833 5.65417 11 6.15833 11H22.6667C23.6542 11 24.3 12.0417 23.8583 12.9292Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledFolderOpenRegular);
const FolderOpenRegular = /*#__PURE__*/memo(ForwardRef);
export default FolderOpenRegular;