@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-
22 lines • 1.12 kB
JavaScript
const React = require("react");
function ArrowPathSingleClockwiseIcon({
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.914 1.06c1.49.196 2.917.87 4.035 1.988l.473.473v-1.67a.75.75 0 0 1 .75-.75.75.75 0 0 1 .75.75v3.483a.75.75 0 0 1-.219.53.75.75 0 0 1-.531.22h-3.48a.75.75 0 0 1-.75-.75.75.75 0 0 1 .75-.75h1.671l-.474-.475a5.49 5.49 0 0 0-6.637-.873 5.497 5.497 0 0 0-2.565 6.188 5.49 5.49 0 0 0 5.31 4.076 5.496 5.496 0 0 0 5.313-4.078.75.75 0 0 1 .918-.532.75.75 0 0 1 .532.92A7.009 7.009 0 0 1 7.998 15a7.002 7.002 0 0 1-6.76-5.188A7.01 7.01 0 0 1 4.5 1.937a6.992 6.992 0 0 1 4.414-.877Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(ArrowPathSingleClockwiseIcon);
module.exports = ForwardRef;