@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.65 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-circle-arrow-right" 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.280 1.023 C 11.203 1.032,10.951 1.059,10.720 1.083 C 8.832 1.283,6.991 2.023,5.360 3.235 C 4.751 3.688,3.684 4.755,3.226 5.367 C 0.728 8.714,0.301 13.032,2.097 16.780 C 2.643 17.918,3.276 18.801,4.238 19.762 C 5.199 20.724,6.082 21.357,7.220 21.903 C 10.967 23.699,15.288 23.270,18.637 20.770 C 19.246 20.316,20.316 19.246,20.770 18.637 C 23.744 14.652,23.744 9.348,20.770 5.363 C 20.316 4.755,19.247 3.686,18.640 3.235 C 17.045 2.049,15.365 1.360,13.423 1.096 C 13.000 1.038,11.574 0.990,11.280 1.023 M13.320 3.101 C 15.883 3.488,18.124 4.931,19.560 7.120 C 19.863 7.583,20.303 8.479,20.492 9.020 C 20.838 10.013,20.977 10.865,20.977 12.000 C 20.977 13.493,20.720 14.621,20.080 15.940 C 19.375 17.394,18.311 18.607,16.927 19.532 C 16.138 20.060,14.876 20.588,13.908 20.797 C 11.266 21.366,8.479 20.708,6.370 19.019 C 4.857 17.807,3.722 16.029,3.267 14.160 C 3.081 13.397,3.023 12.888,3.023 12.000 C 3.023 10.507,3.280 9.379,3.920 8.060 C 4.971 5.891,6.877 4.221,9.160 3.466 C 9.865 3.233,10.432 3.118,11.340 3.024 C 11.662 2.991,12.911 3.039,13.320 3.101 M11.670 7.061 C 11.448 7.142,11.250 7.309,11.128 7.516 C 11.036 7.672,11.020 7.745,11.021 8.000 C 11.021 8.213,11.043 8.341,11.095 8.440 C 11.136 8.517,11.711 9.125,12.374 9.790 L 13.578 11.000 10.735 11.000 C 7.651 11.000,7.674 10.998,7.382 11.221 C 7.302 11.282,7.187 11.415,7.128 11.516 C 7.037 11.672,7.020 11.746,7.020 12.000 C 7.020 12.256,7.036 12.328,7.131 12.489 C 7.256 12.702,7.449 12.864,7.670 12.943 C 7.790 12.986,8.399 12.997,10.699 12.998 L 13.578 13.000 12.374 14.210 C 11.711 14.876,11.138 15.481,11.101 15.555 C 10.872 16.009,11.056 16.601,11.508 16.867 C 11.673 16.964,11.742 16.980,12.000 16.979 C 12.212 16.979,12.341 16.957,12.440 16.905 C 12.517 16.865,13.531 15.884,14.694 14.726 C 16.996 12.433,16.999 12.429,16.999 12.000 C 16.999 11.569,16.999 11.569,14.674 9.255 C 12.750 7.340,12.521 7.124,12.343 7.065 C 12.107 6.987,11.874 6.986,11.670 7.061 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const CircleArrowRightIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const CircleArrowRight = CircleArrowRightIcon;