UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.6 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 StyledUserClockSolid = ({ 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: "M18.6 10.4C15.6139 10.4 13.2 12.8142 13.2 15.8C13.2 18.7858 15.6143 21.2 18.6 21.2C21.5858 21.2 24 18.7858 24 15.8C24 12.8142 21.585 10.4 18.6 10.4ZM20.4 16.4H18.3656C18.165 16.4 18 16.235 18 16.0363V13.4C18 13.0687 18.2687 12.8 18.6 12.8C18.9314 12.8 19.2 13.0687 19.2 13.4V15.2H20.4C20.7314 15.2 21 15.4687 21 15.7663C21 16.0639 20.73 16.4 20.4 16.4ZM8.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.6ZM12 15.8C12 15.0763 12.1208 14.3818 12.336 13.73C11.6962 13.52 11.01 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.2H14.8125C13.1138 20.0075 12 18.035 12 15.8Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledUserClockSolid); const UserClockSolid = /*#__PURE__*/memo(ForwardRef); export default UserClockSolid;