@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.49 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-square-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="M4.499 2.043 C 3.383 2.230,2.461 3.048,2.114 4.160 L 2.020 4.460 2.020 12.000 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 16.120 L 21.980 12.700 21.871 12.514 C 21.479 11.848,20.521 11.848,20.129 12.514 L 20.020 12.700 20.000 15.980 C 19.985 18.483,19.968 19.287,19.930 19.373 C 19.842 19.572,19.672 19.761,19.484 19.872 L 19.300 19.980 12.000 19.980 L 4.700 19.980 4.516 19.872 C 4.415 19.813,4.284 19.700,4.225 19.623 C 3.986 19.309,4.000 19.795,4.000 12.022 C 4.000 4.006,3.975 4.631,4.303 4.303 C 4.618 3.988,4.471 4.000,8.037 3.998 C 10.558 3.997,11.210 3.986,11.330 3.943 C 11.551 3.864,11.744 3.702,11.869 3.489 C 11.964 3.328,11.980 3.256,11.980 3.000 C 11.980 2.746,11.963 2.672,11.872 2.516 C 11.813 2.415,11.698 2.282,11.618 2.221 C 11.323 1.996,11.382 2.000,7.904 2.005 C 6.142 2.007,4.609 2.025,4.499 2.043 M14.695 2.057 C 14.466 2.129,14.256 2.299,14.128 2.516 C 14.037 2.672,14.020 2.746,14.020 3.000 C 14.020 3.256,14.036 3.328,14.131 3.489 C 14.256 3.702,14.449 3.864,14.670 3.943 C 14.787 3.985,15.234 3.997,16.700 3.998 L 18.579 4.000 14.874 7.710 C 12.836 9.751,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.249 11.165,16.289 9.128 L 19.997 5.424 20.009 7.365 L 20.020 9.306 20.141 9.503 C 20.543 10.156,21.457 10.156,21.859 9.503 L 21.980 9.306 21.991 6.063 C 22.001 3.126,21.996 2.804,21.936 2.646 C 21.845 2.405,21.657 2.204,21.420 2.094 L 21.220 2.001 18.040 2.003 C 15.557 2.005,14.824 2.017,14.695 2.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const SquareArrowOutUpRightIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const SquareArrowOutUpRight = SquareArrowOutUpRightIcon;