@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.27 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 20 20",
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: "M10.001 4.414a.75.75 0 0 0-.75.75V10a.75.75 0 0 0 .75.75h3.625a.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75h-2.875V5.164a.75.75 0 0 0-.75-.75z"
}), /*#__PURE__*/React.createElement("path", {
d: "M8.954 2.068a7.983 7.983 0 0 0-4.611 2.274l-.754.754V2.869a.75.75 0 0 0-.75-.75.75.75 0 0 0-.75.75v4.04a.75.75 0 0 0 .75.75h4.04a.75.75 0 0 0 .75-.75.75.75 0 0 0-.75-.75H4.647l.755-.757a6.492 6.492 0 0 1 7.846-1.031 6.496 6.496 0 0 1 3.03 7.313A6.49 6.49 0 0 1 10 16.5a6.498 6.498 0 0 1-6.28-4.82.75.75 0 0 0-.917-.53.75.75 0 0 0-.531.918A8.01 8.01 0 0 0 10 18a8.002 8.002 0 0 0 7.727-5.928 8.01 8.01 0 0 0-3.729-9 7.992 7.992 0 0 0-5.045-1.004Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(ArrowPathClockIcon);
module.exports = ForwardRef;