@sidekickicons/react
Version:
<p align="center"> <a href="https://heroicons.com" target="_blank"> <picture> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/ndri/sidekickicons/HEAD/.github/logo-dark.svg"> <source media="(prefers-
24 lines • 1.29 kB
JavaScript
const React = require("react");
function ArrowPathClockIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 16 16",
fill: "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", {
d: "M8.002 3.082a.75.75 0 0 0-.75.75V8a.75.75 0 0 0 .75.75h3.125a.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75H8.752V3.832a.75.75 0 0 0-.75-.75z"
}), /*#__PURE__*/React.createElement("path", {
d: "M7.086 1.06A6.984 6.984 0 0 0 3.05 3.05l-.473.472v-1.67a.75.75 0 0 0-.75-.75.75.75 0 0 0-.75.75v3.483a.75.75 0 0 0 .219.531.75.75 0 0 0 .531.219h3.48a.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75H3.638l.474-.475a5.49 5.49 0 0 1 6.637-.873 5.497 5.497 0 0 1 2.565 6.188A5.49 5.49 0 0 1 8.002 13.5a5.496 5.496 0 0 1-5.313-4.078.75.75 0 0 0-.918-.531.75.75 0 0 0-.53.92A7.009 7.009 0 0 0 8.001 15a7.002 7.002 0 0 0 6.76-5.188A7.01 7.01 0 0 0 11.5 1.939a6.992 6.992 0 0 0-4.414-.877Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(ArrowPathClockIcon);
module.exports = ForwardRef;