@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.32 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-up" 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.580 7.096 C 11.422 7.172,10.940 7.634,9.274 9.306 C 8.116 10.469,7.138 11.481,7.101 11.555 C 6.872 12.010,7.056 12.601,7.508 12.867 C 7.673 12.964,7.742 12.980,8.000 12.979 C 8.213 12.979,8.341 12.957,8.440 12.905 C 8.517 12.864,9.124 12.290,9.789 11.628 L 10.998 10.424 11.009 13.365 L 11.020 16.306 11.141 16.503 C 11.543 17.156,12.457 17.156,12.859 16.503 L 12.980 16.306 12.991 13.365 L 13.002 10.424 14.211 11.628 C 14.876 12.290,15.483 12.864,15.560 12.905 C 15.659 12.957,15.787 12.979,16.000 12.979 C 16.258 12.980,16.327 12.964,16.492 12.867 C 16.714 12.737,16.901 12.498,16.965 12.264 C 17.019 12.061,16.989 11.733,16.899 11.555 C 16.862 11.481,15.884 10.469,14.726 9.306 C 12.433 7.004,12.429 7.001,12.000 7.001 C 11.851 7.001,11.716 7.031,11.580 7.096 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const SquareArrowUpIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const SquareArrowUp = SquareArrowUpIcon;