@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 StyledUserSolid = ({
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: "M11.5006 12.0007C14.8149 12.0007 17.501 9.31414 17.501 6.00035C17.501 2.68656 14.8149 0 11.5006 0C8.18636 0 5.50026 2.68656 5.50026 6.00035C5.50026 9.31414 8.18636 12.0007 11.5006 12.0007ZM13.8773 14.2508H9.12391C4.63818 14.2508 1 17.8885 1 22.3747C1 23.272 1.72754 24 2.62478 24H20.3774C21.2746 24.0014 22.0012 23.2748 22.0012 22.3747C22.0012 17.8885 18.3635 14.2508 13.8773 14.2508Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledUserSolid);
const UserSolid = /*#__PURE__*/memo(ForwardRef);
export default UserSolid;