UNPKG

@morphemeicons/react

Version:

Morpheme Icons React

27 lines (25 loc) 801 B
const React = require("react"); function RefreshCcw03Icon({ 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: "M14 2s.85.121 4.364 3.636A9 9 0 0114 20.776M14 2h6m-6 0v6m-4 14s-.85-.122-4.364-3.636A9 9 0 0110 3.224M10 22H4m6 0v-6" })); } const ForwardRef = React.forwardRef(RefreshCcw03Icon); module.exports = ForwardRef;