UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 2.05 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 StyledUserTagRegular = ({ 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: "M1.82662 19.4C2.07675 17.0413 4.07625 15.2 6.49875 15.2H10.3013C11.4165 15.2 12.432 15.6031 13.239 16.2545C13.2177 16.0948 13.1923 15.9358 13.1923 15.7719V14.1181C12.3188 13.6512 11.34 13.4 10.3013 13.4H6.49875C2.90887 13.4 0 16.3119 0 19.9025C1.875e-05 20.6187 0.582 21.2 1.29975 21.2H15.501C15.9458 21.2 16.3193 20.9623 16.5536 20.6214L15.33 19.4H1.82662ZM8.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.8ZM23.6475 15.68L20.2612 12.305C19.8113 11.855 19.2 11.6 18.5625 11.6H15.5914C14.9257 11.6 14.3918 12.1344 14.3918 12.8L14.3923 15.77C14.3923 16.4075 14.6415 17.0131 15.0917 17.4631L18.4783 20.8483C18.9471 21.317 19.7061 21.317 20.1748 20.8483L23.6432 17.3795C24.1163 16.91 24.1163 16.1488 23.6475 15.68ZM16.7925 14.8963C16.2956 14.8963 15.8925 14.498 15.8925 13.9963C15.8925 13.4994 16.2956 13.0963 16.7925 13.0963C17.2943 13.0963 17.6925 13.4994 17.6925 13.9963C17.6925 14.4931 17.2913 14.8963 16.7925 14.8963Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledUserTagRegular); const UserTagRegular = /*#__PURE__*/memo(ForwardRef); export default UserTagRegular;