@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.16 kB
JavaScript
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-rotate-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="M2.695 2.057 C 2.466 2.129,2.256 2.299,2.128 2.516 L 2.020 2.700 2.009 5.440 C 1.998 7.911,2.004 8.197,2.064 8.354 C 2.155 8.595,2.343 8.796,2.580 8.906 L 2.780 8.999 5.480 8.998 C 7.632 8.997,8.210 8.986,8.330 8.943 C 8.551 8.864,8.744 8.702,8.869 8.489 C 8.964 8.328,8.980 8.256,8.980 8.000 C 8.980 7.746,8.963 7.672,8.872 7.516 C 8.813 7.415,8.698 7.282,8.618 7.221 C 8.347 7.015,8.225 7.000,6.765 7.000 L 5.422 7.000 5.761 6.657 C 8.095 4.296,11.489 3.421,14.498 4.403 C 16.180 4.953,17.704 6.121,18.691 7.620 C 20.224 9.947,20.414 12.982,19.183 15.499 C 18.749 16.387,18.223 17.105,17.496 17.801 C 16.876 18.394,16.262 18.819,15.471 19.200 C 13.267 20.265,10.733 20.265,8.529 19.200 C 6.942 18.434,5.672 17.189,4.870 15.614 C 4.338 14.570,4.088 13.595,4.006 12.253 C 3.975 11.748,3.960 11.666,3.866 11.507 C 3.480 10.847,2.519 10.851,2.129 11.514 C 2.023 11.695,2.020 11.716,2.022 12.300 C 2.029 13.940,2.548 15.706,3.470 17.220 C 4.015 18.116,5.008 19.235,5.800 19.847 C 7.242 20.961,8.787 21.624,10.600 21.907 C 11.247 22.008,12.753 22.008,13.400 21.907 C 15.638 21.557,17.504 20.620,19.062 19.062 C 20.620 17.504,21.557 15.638,21.907 13.400 C 22.008 12.753,22.008 11.247,21.907 10.600 C 21.624 8.786,20.959 7.238,19.847 5.800 C 19.510 5.365,18.639 4.494,18.200 4.154 C 15.683 2.206,12.574 1.554,9.458 2.321 C 8.690 2.509,8.096 2.730,7.300 3.121 C 6.192 3.665,5.397 4.227,4.454 5.133 L 4.004 5.565 3.992 4.133 L 3.980 2.700 3.872 2.516 C 3.628 2.101,3.150 1.915,2.695 2.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const RotateCcwIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const RotateCcw = RotateCcwIcon;