@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.52 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 StyledUserPlusSolid = ({
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: "M8.4 11.6C11.0513 11.6 13.2 9.45088 13.2 6.8C13.2 4.14913 11.0513 2 8.4 2C5.74875 2 3.6 4.14913 3.6 6.8C3.6 9.45088 5.74875 11.6 8.4 11.6ZM10.3013 13.4H6.49875C2.91038 13.4 0 16.31 0 19.8988C0 20.6187 0.582 21.2 1.29975 21.2H15.501C16.2188 21.2 16.8 20.6187 16.8 19.8988C16.8 16.31 13.89 13.4 10.3013 13.4ZM23.1 9.5H21.3V7.7C21.3 7.205 20.8988 6.8 20.4 6.8C19.9013 6.8 19.5 7.20312 19.5 7.7V9.5H17.7C17.205 9.5 16.8 9.905 16.8 10.4C16.8 10.895 17.2031 11.3 17.7 11.3H19.5V13.1C19.5 13.5988 19.905 14 20.4 14C20.895 14 21.3 13.5969 21.3 13.1V11.3H23.1C23.5988 11.3 24 10.8988 24 10.4C24 9.90125 23.5988 9.5 23.1 9.5Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledUserPlusSolid);
const UserPlusSolid = /*#__PURE__*/memo(ForwardRef);
export default UserPlusSolid;