UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.16 kB
import { jsx as _jsx } from "react/jsx-runtime"; /* eslint-disable no-shadow-restricted-names */ import { Icon } from "@react-three/uikit"; import { forwardRef } from "react"; const text = `<svg class="lucide lucide-iteration-cw" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M11.320 1.025 C 9.156 1.223,7.284 2.070,5.768 3.538 C 4.039 5.211,3.033 7.477,3.023 9.723 C 3.020 10.304,3.020 10.306,3.141 10.503 C 3.540 11.151,4.457 11.156,4.853 10.513 C 4.959 10.340,4.972 10.274,5.021 9.673 C 5.090 8.826,5.132 8.576,5.302 8.018 C 5.994 5.732,7.733 3.994,10.022 3.300 C 10.698 3.095,11.179 3.030,12.000 3.030 C 12.821 3.030,13.302 3.095,13.978 3.300 C 16.269 3.995,18.005 5.731,18.700 8.022 C 18.905 8.698,18.970 9.179,18.970 10.000 C 18.970 10.821,18.905 11.302,18.700 11.978 C 18.346 13.146,17.760 14.117,16.895 14.970 C 15.858 15.993,14.645 16.620,13.140 16.910 C 12.873 16.962,12.291 16.974,9.620 16.988 L 6.420 17.004 7.626 15.792 C 8.289 15.125,8.864 14.517,8.905 14.440 C 8.957 14.341,8.979 14.213,8.979 14.000 C 8.980 13.745,8.964 13.672,8.872 13.516 C 8.618 13.084,8.138 12.906,7.657 13.065 C 7.479 13.124,7.250 13.340,5.326 15.255 C 3.001 17.569,3.001 17.569,3.001 18.000 C 3.001 18.429,3.004 18.433,5.306 20.726 C 6.469 21.884,7.483 22.865,7.560 22.905 C 7.659 22.957,7.788 22.979,8.000 22.979 C 8.258 22.980,8.327 22.964,8.492 22.867 C 8.714 22.737,8.901 22.498,8.965 22.264 C 9.019 22.061,8.989 21.733,8.899 21.555 C 8.862 21.481,8.290 20.876,7.629 20.212 L 6.426 19.004 9.703 18.988 C 13.281 18.970,13.199 18.975,14.204 18.722 C 17.367 17.926,19.921 15.373,20.722 12.207 C 20.927 11.397,20.979 10.949,20.979 10.000 C 20.979 9.051,20.927 8.603,20.722 7.793 C 19.841 4.310,16.883 1.635,13.320 1.101 C 12.908 1.039,11.675 0.992,11.320 1.025 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const IterationCwIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const IterationCw = IterationCwIcon;