@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 811 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const RefreshCcwIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M20.901 12c0 4.968-4.032 9-9 9s-8-5.004-8-5.004m0 0h4.067m-4.068 0v4.5M3 11.72c0-4.969 3.996-9 9-9 6.003 0 9 5.003 9 5.003m0 0v-4.5m0 4.5h-3.996"
}));
const ForwardRef = forwardRef(RefreshCcwIcon);
module.exports = ForwardRef;