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-ccw" 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.309 4.949,3.409 6.685,3.091 8.700 C 2.994 9.311,2.994 10.689,3.091 11.300 C 3.409 13.315,4.309 15.051,5.768 16.462 C 7.120 17.771,8.712 18.569,10.642 18.906 C 10.967 18.963,11.481 18.974,14.297 18.988 L 17.574 19.004 16.371 20.212 C 15.710 20.876,15.138 21.481,15.101 21.555 C 14.872 22.009,15.056 22.601,15.508 22.867 C 15.673 22.964,15.742 22.980,16.000 22.979 C 16.212 22.979,16.341 22.957,16.440 22.905 C 16.517 22.865,17.531 21.884,18.694 20.726 C 20.996 18.433,20.999 18.429,20.999 18.000 C 20.999 17.569,20.999 17.569,18.674 15.255 C 16.750 13.340,16.521 13.124,16.343 13.065 C 15.862 12.906,15.382 13.084,15.128 13.516 C 15.036 13.672,15.020 13.745,15.021 14.000 C 15.021 14.213,15.043 14.341,15.095 14.440 C 15.136 14.517,15.711 15.125,16.374 15.792 L 17.580 17.004 14.380 16.988 C 11.709 16.974,11.127 16.962,10.860 16.910 C 9.355 16.620,8.142 15.993,7.105 14.970 C 6.039 13.919,5.323 12.543,5.094 11.106 C 5.008 10.562,5.008 9.438,5.094 8.894 C 5.457 6.614,7.007 4.591,9.125 3.636 C 10.087 3.202,10.904 3.030,12.000 3.030 C 12.821 3.030,13.302 3.095,13.978 3.300 C 16.267 3.994,18.006 5.732,18.698 8.018 C 18.868 8.576,18.910 8.826,18.979 9.673 C 19.028 10.274,19.041 10.340,19.147 10.513 C 19.543 11.156,20.460 11.151,20.859 10.503 C 20.980 10.306,20.980 10.304,20.977 9.723 C 20.976 9.392,20.946 8.950,20.907 8.700 C 20.306 4.775,17.222 1.686,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 IterationCcwIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const IterationCcw = IterationCcwIcon;