@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-navigation-off" 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="M1.670 1.061 C 1.448 1.142,1.250 1.309,1.128 1.516 C 1.036 1.672,1.020 1.745,1.021 2.000 C 1.021 2.212,1.043 2.341,1.095 2.440 C 1.135 2.517,2.417 3.831,3.942 5.360 L 6.717 8.140 5.108 8.898 C 2.527 10.114,2.372 10.193,2.240 10.353 C 2.101 10.521,2.000 10.795,2.000 11.002 C 2.000 11.321,2.197 11.677,2.463 11.842 C 2.560 11.902,3.839 12.239,6.391 12.878 L 10.176 13.824 11.125 17.619 C 12.168 21.786,12.115 21.622,12.486 21.851 C 12.867 22.087,13.380 22.025,13.695 21.705 C 13.828 21.570,14.038 21.156,14.861 19.413 L 15.866 17.286 18.603 20.025 C 20.138 21.562,21.419 22.812,21.520 22.873 C 21.673 22.964,21.746 22.980,22.000 22.980 C 22.257 22.980,22.327 22.964,22.492 22.867 C 22.968 22.587,23.139 21.967,22.865 21.508 C 22.810 21.416,18.215 16.793,12.653 11.235 C 3.300 1.889,2.525 1.125,2.343 1.065 C 2.107 0.987,1.874 0.986,1.670 1.061 M21.737 1.041 C 21.556 1.096,11.854 5.698,11.685 5.807 C 11.366 6.015,11.206 6.494,11.321 6.903 C 11.394 7.166,11.670 7.457,11.925 7.542 C 12.364 7.687,12.231 7.740,16.100 5.903 C 18.036 4.984,19.679 4.206,19.751 4.175 L 19.882 4.118 19.825 4.249 C 19.794 4.321,19.016 5.964,18.097 7.900 C 16.259 11.770,16.312 11.635,16.458 12.075 C 16.543 12.330,16.834 12.606,17.097 12.679 C 17.514 12.796,17.981 12.635,18.204 12.299 C 18.316 12.129,22.853 2.566,22.945 2.305 C 23.102 1.861,22.889 1.339,22.465 1.127 C 22.257 1.023,21.922 0.983,21.737 1.041 M9.300 10.720 C 9.894 11.314,10.366 11.800,10.349 11.800 C 10.296 11.800,6.143 10.760,6.064 10.727 C 6.002 10.701,6.061 10.660,6.363 10.518 C 6.569 10.420,7.063 10.184,7.459 9.993 C 7.856 9.803,8.189 9.645,8.200 9.643 C 8.211 9.642,8.706 10.126,9.300 10.720 M13.833 16.896 C 13.431 17.741,13.296 17.992,13.272 17.935 C 13.239 17.856,12.200 13.703,12.200 13.651 C 12.200 13.634,12.687 14.107,13.281 14.702 L 14.363 15.783 13.833 16.896 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const NavigationOffIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const NavigationOff = NavigationOffIcon;