UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 793 B
import * as React from "react"; function AlarmClockOffIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "none", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M10.5 5.142a7.999 7.999 0 019.358 9.358m-1.722 3.634A8 8 0 116.862 6.869M4 4L2 6m20 0l-3-3M6 19l-2 2m17 0L3 3" })); } const ForwardRef = React.forwardRef(AlarmClockOffIcon); export default ForwardRef;