@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.36 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 StyledFolderUserSolid = ({
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: "M21.75 4.5H12.75L9.75 1.5H2.25C1.00781 1.5 0 2.50781 0 3.75V20.25C0 21.4922 1.00781 22.5 2.25 22.5H21.75C22.9922 22.5 24 21.4922 24 20.25V6.75C24 5.50781 22.9922 4.5 21.75 4.5ZM12 9C13.657 9 15 10.3434 15 12C15 13.6566 13.657 15 12 15C10.343 15 9 13.6547 9 12C9 10.3453 10.3453 9 12 9ZM16.5 19.5H7.5C7.08581 19.5 6.75 19.1642 6.75 18.75C6.75 17.5078 7.75781 16.5 9 16.5H15C16.2427 16.5 17.25 17.5073 17.25 18.75C17.25 19.1625 16.9125 19.5 16.5 19.5Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledFolderUserSolid);
const FolderUserSolid = /*#__PURE__*/memo(ForwardRef);
export default FolderUserSolid;