UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 3.16 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 StyledUserGearSolid = ({ 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: "M15.9413 20.0975C15.8549 20.0506 15.7698 20.0015 15.6859 19.9501L15.3927 20.1186C15.1677 20.25 14.9116 20.3193 14.6521 20.3193C14.2505 20.3193 13.8597 20.1509 13.5657 19.8412C12.8754 19.0878 12.3549 18.1856 12.0575 17.2199C11.8568 16.5427 12.1454 15.8373 12.7261 15.5234L13.0268 15.3484C13.0243 15.2501 13.0243 15.1518 13.0268 15.0536L12.7397 14.8863C12.2785 14.6256 12.0122 14.1491 12.0032 13.6346C11.46 13.4863 10.89 13.4 10.3013 13.4H6.49875C2.91038 13.4 0 16.3138 0 19.9025C0 20.6187 0.582 21.2 1.29975 21.2H15.4987C15.7135 21.2 15.9075 21.1352 16.086 21.043C16.0008 20.8561 15.9413 20.6567 15.9413 20.4407V20.0975ZM8.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.6ZM22.8938 15.9987C22.9922 15.4738 22.9922 14.93 22.8938 14.405L23.8594 13.8425C23.9719 13.7816 24.0234 13.6503 23.9859 13.5238C23.7328 12.7175 23.3016 11.9814 22.7391 11.372C22.6547 11.2783 22.5141 11.2548 22.4016 11.3204L21.4359 11.8784C21.0279 11.5316 20.5592 11.2597 20.0529 11.0816V9.96125C20.0529 9.83469 19.9592 9.72219 19.8373 9.69875C19.0029 9.51125 18.1498 9.51594 17.3529 9.69875C17.2311 9.72219 17.142 9.83469 17.142 9.96125V11.0817C16.6357 11.2599 16.167 11.5317 15.759 11.8786L14.79 11.3188C14.6822 11.2531 14.5416 11.2766 14.4525 11.3703C13.89 11.9797 13.4587 12.7158 13.2101 13.5221C13.1726 13.6486 13.2242 13.7799 13.332 13.8408L14.2976 14.4033C14.2039 14.9283 14.2039 15.4721 14.2976 15.9971L13.332 16.5596C13.2195 16.6205 13.1726 16.7518 13.2101 16.8783C13.4586 17.6846 13.89 18.4158 14.4525 19.0301C14.5416 19.1238 14.6775 19.1473 14.79 19.0816L15.7605 18.5236C16.1685 18.8705 16.6373 19.1424 17.1435 19.3205V20.441C17.1435 20.5676 17.2326 20.6801 17.3544 20.7035C18.1937 20.891 19.0419 20.8863 19.8388 20.7035C19.9607 20.6801 20.0544 20.5676 20.0544 20.441V19.3205C20.5607 19.1424 21.0294 18.8705 21.4374 18.5236L22.4031 19.0816C22.5109 19.1473 22.6562 19.1238 22.7406 19.0301C23.3031 18.4207 23.7343 17.6846 23.9874 16.8783C24.0249 16.7518 23.9734 16.6205 23.8609 16.5596L22.8938 15.9987ZM18.6 17.0188C17.5969 17.0188 16.7812 16.2031 16.7812 15.2C16.7812 14.1969 17.5969 13.3813 18.6 13.3813C19.6031 13.3813 20.4188 14.1969 20.4188 15.2C20.4188 16.2031 19.605 17.0188 18.6 17.0188Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledUserGearSolid); const UserGearSolid = /*#__PURE__*/memo(ForwardRef); export default UserGearSolid;