@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.43 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 StyledClockRegular = ({
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: "M10.875 5.625C10.875 5.00156 11.3766 4.5 12 4.5C12.6234 4.5 13.125 5.00156 13.125 5.625V11.4L17.1234 14.0625C17.6391 14.4094 17.7797 15.1078 17.3953 15.6234C17.0906 16.1391 16.3922 16.2797 15.8766 15.8953L11.3766 12.8953C11.0625 12.7266 10.875 12.375 10.875 11.9578V5.625ZM12 0C18.6281 0 24 5.37188 24 12C24 18.6281 18.6281 24 12 24C5.37188 24 0 18.6281 0 12C0 5.37188 5.37188 0 12 0ZM2.25 12C2.25 17.3859 6.61406 21.75 12 21.75C17.3859 21.75 21.75 17.3859 21.75 12C21.75 6.61406 17.3859 2.25 12 2.25C6.61406 2.25 2.25 6.61406 2.25 12Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledClockRegular);
const ClockRegular = /*#__PURE__*/memo(ForwardRef);
export default ClockRegular;