@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.95 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 StyledAlarmClockSolid = ({
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: "M7.5 1.19062L0.696562 6.8625C0.255562 6.16875 0 5.34844 0 4.46438C0 1.99875 1.99875 0 4.46438 0C5.63437 0 6.70312 0.451781 7.5 1.19062ZM5.71406 21.9094L4.06078 23.5594C3.47484 24.1453 2.52516 24.1453 1.93922 23.5594C1.35375 22.9734 1.35375 22.0266 1.93922 21.4406L3.59062 19.7906C2.27766 18.0375 1.5 15.8578 1.5 13.5C1.5 7.70156 6.20156 3 12 3C17.7984 3 22.5 7.70156 22.5 13.5C22.5 15.8578 21.7219 18.0375 20.4094 19.7906L22.0594 21.4406C22.6453 22.0266 22.6453 22.9734 22.0594 23.5594C21.4734 24.1453 20.5266 24.1453 19.9406 23.5594L18.2906 21.9094C16.5375 23.2219 14.3578 24 12 24C9.64219 24 7.4625 23.2219 5.71406 21.9094ZM13.125 8.625C13.125 8.00156 12.6234 7.5 12 7.5C11.3766 7.5 10.875 8.00156 10.875 8.625V13.5C10.875 13.8 10.9922 14.0859 11.2031 14.2547L13.4531 16.5047C13.8938 16.9828 14.6063 16.9828 15.0047 16.5047C15.4828 16.1063 15.4828 15.3938 15.0047 14.9531L13.125 13.0359V8.625ZM23.3016 6.8625L16.5 1.19062C17.2547 0.451781 18.3656 0 19.5375 0C22.0031 0 24 1.99875 24 4.46438C24 5.34375 23.7422 6.16875 23.3016 6.8625Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledAlarmClockSolid);
const AlarmClockSolid = /*#__PURE__*/memo(ForwardRef);
export default AlarmClockSolid;