@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.47 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-log-out" 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.419 20.816,3.153 21.557,4.140 21.885 C 4.418 21.978,4.435 21.978,6.768 21.991 C 8.321 22.000,9.169 21.990,9.272 21.962 C 9.498 21.901,9.738 21.711,9.867 21.492 C 9.964 21.327,9.980 21.257,9.980 21.000 C 9.980 20.746,9.963 20.672,9.872 20.516 C 9.761 20.328,9.572 20.158,9.373 20.070 C 9.289 20.033,8.681 20.015,6.980 20.000 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.609 3.998,4.585 4.000,7.037 3.998 C 8.722 3.997,9.212 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.331 2.002,9.297 2.000,6.904 2.005 C 5.692 2.007,4.609 2.025,4.499 2.043 M15.695 6.057 C 15.466 6.129,15.256 6.299,15.128 6.516 C 15.036 6.672,15.020 6.745,15.021 7.000 C 15.021 7.212,15.043 7.341,15.095 7.440 C 15.135 7.517,15.936 8.350,16.874 9.290 L 18.579 11.000 13.736 11.000 C 9.748 11.000,8.861 11.010,8.710 11.055 C 8.467 11.128,8.260 11.293,8.128 11.516 C 8.037 11.672,8.020 11.746,8.020 12.000 C 8.020 12.256,8.036 12.328,8.131 12.489 C 8.256 12.702,8.449 12.864,8.670 12.943 C 8.792 12.987,9.728 12.997,13.699 12.998 L 18.579 13.000 16.874 14.710 C 15.936 15.650,15.135 16.483,15.095 16.560 C 15.043 16.659,15.021 16.788,15.021 17.000 C 15.020 17.258,15.036 17.327,15.133 17.492 C 15.263 17.714,15.502 17.901,15.736 17.965 C 15.938 18.019,16.266 17.989,16.445 17.899 C 16.519 17.862,17.756 16.659,19.194 15.226 C 22.036 12.393,21.999 12.435,21.999 12.000 C 21.999 11.564,22.039 11.609,19.174 8.754 C 16.628 6.215,16.533 6.125,16.323 6.064 C 16.066 5.988,15.919 5.987,15.695 6.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const LogOutIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const LogOut = LogOutIcon;