UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.53 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-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.026 C 9.617 1.179,8.507 1.476,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.633 10.275,0.633 13.725,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 22.045 16.929,22.785 14.989,22.962 12.891 C 23.029 12.106,23.004 11.741,22.868 11.509 C 22.482 10.851,21.519 10.850,21.134 11.507 C 21.040 11.668,21.025 11.747,20.995 12.253 C 20.932 13.327,20.813 13.998,20.534 14.840 C 19.907 16.739,18.639 18.387,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 10.002 3.187,10.673 3.068,11.747 3.005 C 12.258 2.975,12.331 2.961,12.498 2.863 C 13.248 2.424,13.119 1.304,12.290 1.055 C 12.124 1.005,11.652 0.991,11.280 1.026 M15.695 1.057 C 15.466 1.129,15.256 1.299,15.128 1.516 C 15.037 1.672,15.020 1.746,15.020 2.000 C 15.020 2.256,15.036 2.328,15.131 2.489 C 15.256 2.702,15.449 2.864,15.670 2.943 C 15.787 2.985,16.234 2.997,17.700 2.998 L 19.579 3.000 15.374 7.210 C 13.061 9.526,11.135 11.483,11.095 11.560 C 11.043 11.659,11.021 11.788,11.021 12.000 C 11.020 12.258,11.036 12.327,11.133 12.492 C 11.263 12.714,11.502 12.901,11.736 12.965 C 11.938 13.019,12.266 12.989,12.445 12.899 C 12.519 12.862,14.474 10.940,16.789 8.628 L 20.997 4.423 21.009 6.365 L 21.020 8.306 21.141 8.503 C 21.543 9.156,22.457 9.156,22.859 8.503 L 22.980 8.306 22.991 5.063 C 23.001 2.126,22.996 1.804,22.936 1.646 C 22.845 1.405,22.657 1.204,22.420 1.094 L 22.220 1.001 19.040 1.003 C 16.557 1.005,15.824 1.017,15.695 1.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const CircleArrowOutUpRightIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const CircleArrowOutUpRight = CircleArrowOutUpRightIcon;