@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 939 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.998 12c0 4.968-4.031 9-9 9-4.967 0-8-5.004-8-5.004m0 0h4.068m-4.068 0v4.5"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M3 12c0-4.968 3.996-9 9-9 6.002 0 9 5.004 9 5.004m0 0v-4.5m0 4.5h-3.997",
opacity: 0.4
}));
const ForwardRef = forwardRef(RefreshCcwIcon);
module.exports = ForwardRef;