@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 809 B
JavaScript
import * as React from "react";
function ClockStopwatchIcon({
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: "M12 9.5v4l2.5 1.5M12 5a8.5 8.5 0 100 17 8.5 8.5 0 000-17zm0 0V2m-2 0h4m6.329 3.592l-1.5-1.5.75.75m-15.908.75l1.5-1.5-.75.75"
}));
}
const ForwardRef = React.forwardRef(ClockStopwatchIcon);
export default ForwardRef;