UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.04 kB
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-minus-inside" 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="M11.340 1.024 C 10.026 1.160,9.091 1.415,8.060 1.918 C 6.244 2.804,4.840 4.202,3.939 6.020 C 3.326 7.257,2.999 8.633,3.000 9.980 C 3.003 13.237,5.032 16.964,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.195 22.638,14.016 21.908,15.083 20.842 C 18.970 16.958,20.997 13.236,21.000 9.980 C 21.001 7.642,20.047 5.341,18.379 3.663 C 17.011 2.285,15.247 1.392,13.320 1.101 C 12.911 1.039,11.662 0.991,11.340 1.024 M13.102 3.098 C 16.099 3.551,18.490 5.983,18.924 9.020 C 18.999 9.547,18.991 10.617,18.907 11.080 C 18.528 13.191,17.174 15.574,14.883 18.160 C 14.116 19.026,12.124 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.556 13.643,5.097 11.098 C 5.010 10.616,4.999 9.558,5.076 9.020 C 5.480 6.194,7.575 3.879,10.340 3.205 C 10.624 3.135,11.064 3.069,11.540 3.023 C 11.813 2.997,12.726 3.041,13.102 3.098 M8.695 9.057 C 8.466 9.129,8.256 9.299,8.128 9.516 C 8.037 9.672,8.020 9.746,8.020 10.000 C 8.020 10.256,8.036 10.328,8.131 10.489 C 8.256 10.702,8.449 10.864,8.670 10.943 C 8.891 11.022,15.109 11.022,15.330 10.943 C 15.551 10.864,15.744 10.702,15.869 10.489 C 15.964 10.328,15.980 10.256,15.980 10.000 C 15.980 9.746,15.963 9.672,15.872 9.516 C 15.740 9.293,15.533 9.128,15.290 9.055 C 15.030 8.977,8.945 8.979,8.695 9.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const MapPinMinusInsideIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const MapPinMinusInside = MapPinMinusInsideIcon;