UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.44 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 StyledUserRegular = ({ 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: "M14.75 14.25H10.25C5.69375 14.25 2 17.9438 2 22.5C2 23.3283 2.67172 24 3.5 24H21.5C22.3283 24 23 23.3283 23 22.5C23 17.9438 19.3062 14.25 14.75 14.25ZM4.29641 21.75C4.66672 18.7922 7.19375 16.5 10.25 16.5H14.75C17.8044 16.5 20.3328 18.7945 20.7031 21.75H4.29641ZM12.5 12C15.8136 12 18.5 9.31359 18.5 6C18.5 2.68641 15.8136 0 12.5 0C9.18641 0 6.5 2.68641 6.5 6C6.5 9.31406 9.18594 12 12.5 12ZM12.5 2.25C14.5677 2.25 16.25 3.93234 16.25 6C16.25 8.06766 14.5677 9.75 12.5 9.75C10.4323 9.75 8.75 8.06719 8.75 6C8.75 3.93234 10.4328 2.25 12.5 2.25Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledUserRegular); const UserRegular = /*#__PURE__*/memo(ForwardRef); export default UserRegular;