@jfstech/icons-react
Version:
<p align="center"> <a href="https://jfstech.uk" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/JFS-Tech/icons/HEAD/.github/logo-dark.svg"> <source media="(prefers-color
25 lines • 985 B
JavaScript
import * as React from "react";
function Watch02Icon({
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",
"data-slot": "icon",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "m15.863 18.041-.874 2.622a.49.49 0 0 1-.468.337H9.316a.49.49 0 0 1-.468-.337l-.874-2.622m0-12.082.874-2.622A.49.49 0 0 1 9.315 3h5.207c.212 0 .4.136.467.337l.874 2.622M7.48 18.041h8.876a1.48 1.48 0 0 0 1.48-1.48V7.686a1.48 1.48 0 0 0-1.48-1.48H7.48A1.48 1.48 0 0 0 6 7.686v8.877c0 .817.663 1.48 1.48 1.48Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(Watch02Icon);
export default ForwardRef;