@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.85 kB
JavaScript
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 StyledUserClockRegular = ({
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.0509 11.6 13.2 9.45088 13.2 6.8C13.2 4.14913 11.0509 2 8.4 2C5.74913 2 3.6 4.14913 3.6 6.8C3.6 9.45125 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.74588 9.8 5.4 8.45375 5.4 6.8C5.4 5.14588 6.74625 3.8 8.4 3.8ZM14.8125 21.2H1.2C0.537375 21.2 0 20.6626 0 20C0 16.355 2.955 13.4 6.6 13.4H10.2C10.9451 13.4 11.6584 13.529 12.3263 13.7565C12.1401 14.3281 12.0342 14.9344 12.0119 15.5629C11.4525 15.3313 10.8413 15.2 10.2 15.2H6.6C4.1565 15.2 2.13375 17.0356 1.8375 19.4H13.0725C13.5338 20.105 14.1225 20.7163 14.8125 21.2Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledUserClockRegular);
const UserClockRegular = /*#__PURE__*/memo(ForwardRef);
export default UserClockRegular;