@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.52 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-x" 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 M8.670 8.061 C 8.448 8.142,8.250 8.309,8.128 8.516 C 8.036 8.672,8.020 8.745,8.021 9.000 C 8.021 9.213,8.043 9.341,8.095 9.440 C 8.136 9.517,8.711 10.125,9.374 10.790 L 10.578 12.000 9.374 13.210 C 8.711 13.876,8.138 14.481,8.101 14.555 C 7.872 15.009,8.056 15.601,8.508 15.867 C 8.673 15.964,8.742 15.980,9.000 15.979 C 9.213 15.979,9.341 15.957,9.440 15.905 C 9.517 15.864,10.125 15.289,10.790 14.626 L 12.000 13.422 13.210 14.626 C 13.876 15.289,14.481 15.862,14.555 15.899 C 15.009 16.128,15.601 15.944,15.867 15.492 C 15.964 15.327,15.980 15.258,15.979 15.000 C 15.979 14.787,15.957 14.659,15.905 14.560 C 15.864 14.483,15.289 13.876,14.626 13.210 L 13.422 12.000 14.626 10.790 C 15.289 10.125,15.864 9.517,15.905 9.440 C 15.957 9.341,15.979 9.213,15.979 9.000 C 15.980 8.745,15.964 8.672,15.872 8.516 C 15.618 8.084,15.137 7.905,14.657 8.066 C 14.484 8.124,14.312 8.279,13.230 9.354 L 12.000 10.576 10.770 9.354 C 9.688 8.279,9.516 8.124,9.343 8.066 C 9.108 7.987,8.875 7.985,8.670 8.061 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const SquareXIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const SquareX = SquareXIcon;