@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.74 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-out-down-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 9.527 1.210,8.337 1.558,7.180 2.120 C 6.045 2.671,5.193 3.285,4.238 4.239 C 3.277 5.198,2.643 6.080,2.097 7.220 C 0.301 10.968,0.728 15.286,3.226 18.633 C 3.686 19.248,4.752 20.314,5.367 20.774 C 7.048 22.028,8.990 22.776,11.040 22.959 C 12.222 23.064,12.586 22.970,12.869 22.489 C 12.964 22.328,12.980 22.256,12.980 22.000 C 12.980 21.746,12.963 21.672,12.872 21.516 C 12.661 21.158,12.335 21.000,11.803 21.000 C 11.404 21.000,10.583 20.902,10.092 20.797 C 9.099 20.582,7.861 20.061,7.040 19.511 C 5.157 18.249,3.791 16.312,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.799 6.247,6.247 4.799,8.060 3.920 C 9.379 3.280,10.507 3.023,12.000 3.023 C 13.493 3.023,14.621 3.280,15.940 3.920 C 18.109 4.971,19.779 6.877,20.534 9.160 C 20.813 10.003,20.932 10.673,20.995 11.750 C 21.027 12.281,21.037 12.334,21.146 12.510 C 21.541 13.153,22.459 13.152,22.856 12.508 C 23.004 12.266,23.031 11.921,22.962 11.109 C 22.785 9.011,22.045 7.071,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 M11.695 11.057 C 11.466 11.129,11.256 11.299,11.128 11.516 C 11.036 11.672,11.020 11.745,11.021 12.000 C 11.021 12.212,11.043 12.341,11.095 12.440 C 11.135 12.517,13.061 14.474,15.374 16.790 L 19.579 21.000 17.736 21.000 C 15.735 21.000,15.663 21.007,15.382 21.221 C 15.302 21.282,15.187 21.415,15.128 21.516 C 15.037 21.672,15.020 21.746,15.020 22.000 C 15.020 22.256,15.036 22.328,15.131 22.489 C 15.256 22.702,15.449 22.864,15.670 22.943 C 15.790 22.986,16.451 22.997,19.020 22.998 L 22.220 22.999 22.420 22.906 C 22.657 22.796,22.845 22.595,22.936 22.354 C 22.996 22.196,23.001 21.874,22.991 18.940 L 22.980 15.700 22.871 15.514 C 22.479 14.848,21.521 14.848,21.129 15.514 L 21.020 15.700 21.009 17.638 L 20.997 19.576 16.769 15.351 C 12.646 11.232,12.535 11.125,12.323 11.063 C 12.066 10.988,11.919 10.987,11.695 11.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const CircleArrowOutDownRightIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const CircleArrowOutDownRight = CircleArrowOutDownRightIcon;