UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.78 kB
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 StyledUserPlusRegular = ({ 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.74625 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.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.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.82662ZM23.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(StyledUserPlusRegular); const UserPlusRegular = /*#__PURE__*/memo(ForwardRef); export default UserPlusRegular;