@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.62 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-left" 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 1.956 7.070,1.210 9.023,1.037 11.103 C 0.969 11.915,0.996 12.267,1.144 12.508 C 1.541 13.152,2.458 13.154,2.854 12.510 C 2.963 12.334,2.973 12.281,3.005 11.750 C 3.068 10.673,3.187 10.003,3.466 9.160 C 4.221 6.877,5.891 4.971,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 17.753 4.799,19.201 6.247,20.080 8.060 C 20.720 9.379,20.977 10.507,20.977 12.000 C 20.977 13.493,20.720 14.621,20.080 15.940 C 19.205 17.746,17.798 19.160,15.980 20.061 C 14.812 20.640,13.363 21.000,12.197 21.000 C 11.665 21.000,11.339 21.158,11.128 21.516 C 11.037 21.672,11.020 21.746,11.020 22.000 C 11.020 22.256,11.036 22.328,11.131 22.489 C 11.414 22.970,11.778 23.064,12.960 22.959 C 15.008 22.776,16.955 22.025,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 M11.660 11.066 C 11.472 11.123,11.204 11.382,7.231 15.351 L 3.003 19.576 2.991 17.638 L 2.980 15.700 2.871 15.514 C 2.479 14.848,1.521 14.848,1.129 15.514 L 1.020 15.700 1.009 18.940 C 0.999 21.874,1.004 22.196,1.064 22.354 C 1.155 22.595,1.343 22.796,1.580 22.906 L 1.780 22.999 4.980 22.998 C 7.549 22.997,8.210 22.986,8.330 22.943 C 8.551 22.864,8.744 22.702,8.869 22.489 C 8.964 22.328,8.980 22.256,8.980 22.000 C 8.980 21.746,8.963 21.672,8.872 21.516 C 8.813 21.415,8.698 21.282,8.618 21.221 C 8.337 21.007,8.265 21.000,6.264 21.000 L 4.421 21.000 8.626 16.790 C 10.939 14.474,12.865 12.517,12.905 12.440 C 12.957 12.341,12.979 12.212,12.979 12.000 C 12.980 11.745,12.964 11.672,12.872 11.516 C 12.740 11.293,12.533 11.128,12.290 11.055 C 12.062 10.986,11.915 10.989,11.660 11.066 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const CircleArrowOutDownLeftIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const CircleArrowOutDownLeft = CircleArrowOutDownLeftIcon;