@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 1.2 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const RefreshCcwIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M20.901 11.25a.75.75 0 0 1 .75.75c0 5.382-4.368 9.75-9.75 9.75-2.744 0-4.917-1.381-6.367-2.697a14 14 0 0 1-.884-.878v2.321a.75.75 0 0 1-1.5 0v-4.5a.75.75 0 0 1 .75-.75h4.068a.75.75 0 0 1 0 1.5H5.389c.308.365.694.781 1.152 1.197 1.309 1.186 3.136 2.307 5.36 2.307a8.253 8.253 0 0 0 8.25-8.25.75.75 0 0 1 .75-.75M12 3.47a8.23 8.23 0 0 0-8.25 8.25.75.75 0 1 1-1.5 0A9.73 9.73 0 0 1 12 1.97c3.224 0 5.638 1.346 7.232 2.675.386.323.725.645 1.018.948v-2.37a.75.75 0 0 1 1.5 0v4.5a.75.75 0 0 1-.75.75h-3.996a.75.75 0 0 1 0-1.5h2.48a11.4 11.4 0 0 0-1.213-1.176C16.865 4.624 14.779 3.47 12 3.47",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(RefreshCcwIcon);
export default ForwardRef;