UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.44 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-square-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="M2.580 2.094 C 2.343 2.204,2.155 2.405,2.064 2.646 C 2.004 2.804,1.999 3.126,2.009 6.063 L 2.020 9.306 2.141 9.503 C 2.543 10.156,3.457 10.156,3.859 9.503 L 3.980 9.306 3.991 7.365 L 4.003 5.424 7.711 9.128 C 9.751 11.165,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,11.164 9.751,9.126 7.710 L 5.421 4.000 7.300 3.998 C 8.766 3.997,9.213 3.985,9.330 3.943 C 9.551 3.864,9.744 3.702,9.869 3.489 C 9.964 3.328,9.980 3.256,9.980 3.000 C 9.980 2.746,9.963 2.672,9.872 2.516 C 9.813 2.415,9.698 2.282,9.618 2.221 C 9.324 1.997,9.377 2.000,5.944 2.000 L 2.780 2.001 2.580 2.094 M12.695 2.056 C 12.465 2.129,12.256 2.299,12.128 2.516 C 12.037 2.672,12.020 2.746,12.020 3.000 C 12.020 3.256,12.036 3.328,12.131 3.489 C 12.256 3.702,12.449 3.864,12.670 3.943 C 12.790 3.986,13.442 3.997,15.963 3.998 C 19.529 4.000,19.382 3.988,19.697 4.303 C 20.024 4.631,20.000 4.009,20.000 12.001 C 20.000 17.907,19.991 19.138,19.945 19.290 C 19.872 19.533,19.707 19.740,19.484 19.872 L 19.300 19.980 12.000 19.980 L 4.700 19.980 4.516 19.872 C 4.328 19.761,4.158 19.572,4.070 19.373 C 4.032 19.287,4.015 18.483,4.000 15.980 L 3.980 12.700 3.871 12.514 C 3.479 11.848,2.521 11.848,2.129 12.514 L 2.020 12.700 2.020 16.120 L 2.020 19.540 2.114 19.840 C 2.422 20.827,3.173 21.578,4.160 21.886 L 4.460 21.980 12.000 21.980 L 19.540 21.980 19.840 21.886 C 20.827 21.578,21.578 20.827,21.886 19.840 L 21.980 19.540 21.980 12.000 L 21.980 4.460 21.886 4.160 C 21.581 3.182,20.831 2.427,19.861 2.122 L 19.540 2.021 16.200 2.012 C 13.535 2.006,12.827 2.014,12.695 2.056 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const SquareArrowOutUpLeftIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const SquareArrowOutUpLeft = SquareArrowOutUpLeftIcon;