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-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.380 2.232,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 12.000 L 21.980 4.460 21.886 4.160 C 21.581 3.182,20.832 2.428,19.861 2.121 L 19.540 2.020 12.120 2.014 C 8.039 2.011,4.609 2.024,4.499 2.043 M19.310 4.061 C 19.589 4.144,19.856 4.411,19.939 4.690 C 19.993 4.870,20.000 5.755,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.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 5.758,4.007 4.870,4.061 4.690 C 4.140 4.421,4.412 4.143,4.673 4.063 C 4.964 3.974,19.009 3.971,19.310 4.061 M11.670 7.061 C 11.448 7.142,11.250 7.309,11.128 7.516 C 11.036 7.672,11.020 7.745,11.021 8.000 C 11.021 8.213,11.043 8.341,11.095 8.440 C 11.136 8.517,11.711 9.125,12.374 9.790 L 13.578 11.000 10.735 11.000 C 7.651 11.000,7.674 10.998,7.382 11.221 C 7.302 11.282,7.187 11.415,7.128 11.516 C 7.037 11.672,7.020 11.746,7.020 12.000 C 7.020 12.256,7.036 12.328,7.131 12.489 C 7.256 12.702,7.449 12.864,7.670 12.943 C 7.790 12.986,8.399 12.997,10.699 12.998 L 13.578 13.000 12.374 14.210 C 11.711 14.876,11.138 15.481,11.101 15.555 C 10.872 16.009,11.056 16.601,11.508 16.867 C 11.673 16.964,11.742 16.980,12.000 16.979 C 12.212 16.979,12.341 16.957,12.440 16.905 C 12.517 16.865,13.531 15.884,14.694 14.726 C 16.996 12.433,16.999 12.429,16.999 12.000 C 16.999 11.569,16.999 11.569,14.674 9.255 C 12.750 7.340,12.521 7.124,12.343 7.065 C 12.107 6.987,11.874 6.986,11.670 7.061 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const SquareArrowRightIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const SquareArrowRight = SquareArrowRightIcon;