UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

21 lines 1.15 kB
const React = require("react"); function RefreshCcwIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { d: "M3.395 12A8.584 8.584 0 0 1 12 3.395c2.895 0 5.068 1.204 6.531 2.424.57.475 1.028.95 1.375 1.353h-2.734a.698.698 0 0 0 0 1.395h4.13A.7.7 0 0 0 22 7.87V3.219a.698.698 0 0 0-1.395 0v2.643c-.33-.351-.723-.733-1.18-1.114C17.788 3.382 15.309 2 12 2A9.98 9.98 0 0 0 2 12a.698.698 0 0 0 1.395 0M22 12a.698.698 0 0 0-1.395 0A8.61 8.61 0 0 1 12 20.605c-2.325 0-4.232-1.172-5.592-2.405-.53-.482-.968-.964-1.304-1.372h2.83a.698.698 0 0 0 0-1.395H3.73a.7.7 0 0 0-.697.697v4.651a.698.698 0 0 0 1.395 0v-2.6c.298.334.647.693 1.043 1.052C6.962 20.586 9.19 22 12 22c5.52 0 10-4.48 10-10" })); } const ForwardRef = React.forwardRef(RefreshCcwIcon); module.exports = ForwardRef;