@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.13 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 24 24",
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: "M13.273 2.334a9.74 9.74 0 0 0-6.148 1.223 9.749 9.749 0 0 0 4.871 18.193 9.76 9.76 0 0 0 9.418-7.229.75.75 0 0 0-.53-.917.75.75 0 0 0-.92.529 8.247 8.247 0 0 1-7.968 6.117 8.237 8.237 0 0 1-7.965-6.113 8.248 8.248 0 0 1 3.846-9.282 8.237 8.237 0 0 1 9.955 1.31l1.248 1.247h-3.207a.75.75 0 0 0-.75.75.75.75 0 0 0 .75.75h5.014a.75.75 0 0 0 .605-.398.75.75 0 0 0 .102-.248.75.75 0 0 0 .043-.104V3.146a.75.75 0 0 0-.75-.75.75.75 0 0 0-.75.75v3.202l-1.244-1.244a9.725 9.725 0 0 0-5.62-2.77Z"
}));
}
const ForwardRef = /*#__PURE__*/ React.forwardRef(ArrowPathSingleClockwiseIcon);
module.exports = ForwardRef;