UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 3.4 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 StyledUserGearRegular = ({ 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: "M22.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.5596 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.8896 18.4158 14.4525 19.0301C14.5416 19.1238 14.6775 19.1473 14.79 19.0816L15.7605 18.5236C16.1685 18.8705 16.6369 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.1988 20.4188 15.2C20.4188 16.2013 19.605 17.0188 18.6 17.0188ZM15.9413 20.4425C15.9413 20.673 16.0113 20.8839 16.1075 21.0804C15.9525 21.1513 15.7838 21.2 15.6 21.2H1.2C0.537375 21.2 0 20.6638 0 20C0 16.355 2.955 13.4 6.6 13.4H10.1663C10.7918 13.4 11.3955 13.4927 11.9689 13.6554C11.9848 14.1617 12.2522 14.6282 12.7069 14.8854L12.9939 15.0527C12.9914 15.1509 12.9914 15.2492 12.9939 15.3474L12.6933 15.5225C12.5761 15.5858 12.4809 15.6748 12.3891 15.7665C11.7563 15.4138 11.0063 15.2 10.2 15.2H6.6C4.15613 15.2 2.13375 17.0356 1.8375 19.4H13.2075C13.3238 19.5499 13.4392 19.7 13.5676 19.8403C13.8617 20.15 14.252 20.3184 14.654 20.3184C14.9134 20.3184 15.1697 20.249 15.3947 20.1177L15.6878 19.9492C15.7717 20.0006 15.8568 20.0497 15.9432 20.0966V20.4425H15.9413ZM8.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.45125 5.74875 11.6 8.4 11.6ZM8.4 3.8C10.0538 3.8 11.4 5.14588 11.4 6.8C11.4 8.45413 10.0541 9.8 8.39963 9.8C6.74513 9.8 5.4 8.45375 5.4 6.8C5.4 5.14588 6.74625 3.8 8.4 3.8Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledUserGearRegular); const UserGearRegular = /*#__PURE__*/memo(ForwardRef); export default UserGearRegular;