@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 832 B
JavaScript
import * as React from "react";
function RefreshCcw05Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__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: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M8.547 19.767A8.5 8.5 0 0019.362 7.75l-.25-.433M4.638 16.25A8.5 8.5 0 0115.453 4.233m-12.96 12.1l2.732.733.733-2.732m12.085-4.668l.732-2.732 2.732.732"
}));
}
const ForwardRef = React.forwardRef(RefreshCcw05Icon);
export default ForwardRef;