@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.88 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 StyledUserGroupRegular = ({
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.6ZM8.4 3.8C10.0541 3.8 11.4 5.14588 11.4 6.8C11.4 8.45413 10.0541 9.8 8.4 9.8C6.74588 9.8 5.4 8.45375 5.4 6.8C5.4 5.14588 6.74625 3.8 8.4 3.8ZM10.3013 13.4H6.49875C2.90887 13.4 0 16.31 0 19.8988C0 20.6187 0.582 21.2 1.29975 21.2H15.4987C16.2188 21.2 16.8 20.6187 16.8 19.8988C16.8 16.31 13.89 13.4 10.3013 13.4ZM1.82662 19.4C2.07675 17.0413 4.07625 15.2 6.49875 15.2H10.3013C12.7241 15.2 14.6925 17.0424 14.9738 19.4H1.82662ZM17.9663 14H15.1969C16.92 15.4138 18 17.5288 18 19.8988C18 20.3787 17.8575 20.8213 17.625 21.2H22.8C23.4638 21.2 24 20.66 24 19.9663C24 16.685 21.315 14 17.9663 14ZM16.2 11.6C18.5213 11.6 20.4 9.72125 20.4 7.4C20.4 5.07875 18.5213 3.2 16.2 3.2C15.2584 3.2 14.3985 3.52081 13.698 4.04413C14.13 4.87363 14.4 5.8025 14.4 6.8C14.4 8.132 13.9526 9.35525 13.2154 10.3516C13.9763 11.12 15.03 11.6 16.2 11.6Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledUserGroupRegular);
const UserGroupRegular = /*#__PURE__*/memo(ForwardRef);
export default UserGroupRegular;