UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.49 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-circle-arrow-out-up-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="M1.580 1.094 C 1.343 1.204,1.155 1.405,1.064 1.646 C 1.004 1.804,0.999 2.126,1.009 5.063 L 1.020 8.306 1.141 8.503 C 1.543 9.156,2.457 9.156,2.859 8.503 L 2.980 8.306 2.991 6.365 L 3.003 4.423 7.211 8.628 C 9.526 10.940,11.483 12.865,11.560 12.905 C 11.659 12.957,11.788 12.979,12.000 12.979 C 12.258 12.980,12.327 12.964,12.492 12.867 C 12.714 12.737,12.901 12.498,12.965 12.264 C 13.019 12.062,12.989 11.734,12.899 11.555 C 12.862 11.481,10.939 9.526,8.626 7.210 L 4.421 3.000 6.300 2.998 C 7.766 2.997,8.213 2.985,8.330 2.943 C 8.551 2.864,8.744 2.702,8.869 2.489 C 8.964 2.328,8.980 2.256,8.980 2.000 C 8.980 1.746,8.963 1.672,8.872 1.516 C 8.813 1.415,8.698 1.282,8.618 1.221 C 8.324 0.997,8.377 1.000,4.944 1.000 L 1.780 1.001 1.580 1.094 M11.695 1.054 C 11.048 1.268,10.799 2.040,11.198 2.591 C 11.263 2.681,11.400 2.803,11.502 2.863 C 11.669 2.961,11.742 2.975,12.253 3.005 C 13.327 3.068,13.998 3.187,14.840 3.466 C 17.123 4.221,19.029 5.891,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.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.578 17.583,3.370 15.431,3.081 13.160 C 3.058 12.973,3.023 12.565,3.005 12.253 C 2.975 11.747,2.960 11.668,2.866 11.507 C 2.481 10.849,1.518 10.851,1.132 11.510 C 0.997 11.740,0.972 12.112,1.037 12.897 C 1.210 14.977,1.956 16.930,3.226 18.633 C 3.686 19.248,4.752 20.314,5.367 20.774 C 6.780 21.828,8.354 22.517,10.038 22.820 C 13.082 23.368,16.131 22.641,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 16.763 1.839,14.689 1.100,12.420 1.019 C 12.008 1.005,11.816 1.014,11.695 1.054 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const CircleArrowOutUpLeftIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const CircleArrowOutUpLeft = CircleArrowOutUpLeftIcon;