@react-three/uikit-lucide
Version:
lucide icons for r3/uikit
10 lines (9 loc) • 2.97 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-map-pin-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.037 1.672,1.020 1.746,1.020 2.000 C 1.020 2.254,1.036 2.327,1.127 2.480 C 1.187 2.579,1.891 3.315,2.693 4.115 L 4.151 5.570 3.897 6.095 C 3.047 7.851,2.801 9.698,3.162 11.611 C 3.690 14.418,5.682 17.612,8.917 20.841 C 9.987 21.910,10.806 22.638,11.099 22.781 C 11.693 23.072,12.307 23.072,12.901 22.781 C 13.454 22.511,15.811 20.202,17.009 18.759 L 17.157 18.580 19.289 20.706 C 20.461 21.875,21.483 22.865,21.560 22.905 C 21.659 22.957,21.788 22.979,22.000 22.979 C 22.258 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 M11.300 1.024 C 10.415 1.113,9.611 1.290,8.930 1.544 C 7.987 1.897,7.665 2.112,7.542 2.472 C 7.414 2.846,7.484 3.186,7.747 3.480 C 7.952 3.707,8.178 3.808,8.480 3.807 C 8.655 3.806,8.797 3.765,9.173 3.602 C 10.774 2.912,12.427 2.819,14.100 3.325 C 14.564 3.465,15.407 3.864,15.840 4.149 C 17.586 5.295,18.739 7.193,18.959 9.287 C 19.081 10.444,18.896 11.562,18.355 12.931 C 18.251 13.193,18.200 13.385,18.200 13.514 C 18.200 14.268,18.964 14.749,19.632 14.416 C 19.900 14.283,20.032 14.119,20.197 13.715 C 20.988 11.782,21.185 10.027,20.817 8.204 C 20.430 6.286,19.327 4.407,17.867 3.177 C 16.544 2.064,14.955 1.338,13.311 1.098 C 12.909 1.040,11.617 0.992,11.300 1.024 M12.495 6.121 C 12.079 6.249,11.760 6.653,11.760 7.053 C 11.760 7.373,11.837 7.559,12.059 7.780 C 12.220 7.940,12.317 7.999,12.545 8.071 C 13.213 8.283,13.714 8.783,13.930 9.454 C 14.091 9.954,14.448 10.240,14.910 10.240 C 15.352 10.239,15.710 9.978,15.855 9.549 C 15.935 9.312,15.936 9.237,15.859 8.944 C 15.765 8.582,15.570 8.146,15.351 7.808 C 15.083 7.396,14.501 6.831,14.087 6.584 C 13.481 6.222,12.805 6.026,12.495 6.121 M8.010 9.858 C 7.969 10.670,8.211 11.523,8.683 12.226 C 9.452 13.372,10.818 14.062,12.176 13.991 L 12.552 13.972 14.143 15.563 L 15.734 17.154 15.497 17.444 C 15.058 17.981,14.588 18.496,13.882 19.214 C 13.096 20.013,12.075 20.960,11.999 20.960 C 11.933 20.960,11.411 20.487,10.585 19.680 C 7.470 16.635,5.557 13.644,5.097 11.098 C 4.997 10.549,4.997 9.461,5.095 8.860 C 5.174 8.380,5.379 7.659,5.541 7.294 L 5.643 7.063 6.837 8.257 L 8.031 9.450 8.010 9.858 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`;
export const MapPinOffIcon = /*@__PURE__*/ forwardRef((props, ref) => {
return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 });
});
export const MapPinOff = MapPinOffIcon;