UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.15 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-check-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 M14.640 7.068 C 14.488 7.121,14.196 7.394,12.731 8.853 L 11.002 10.575 10.271 9.855 C 9.655 9.247,9.509 9.123,9.343 9.067 C 8.865 8.905,8.383 9.083,8.128 9.516 C 8.036 9.672,8.020 9.745,8.021 10.000 C 8.021 10.213,8.043 10.341,8.095 10.440 C 8.197 10.633,10.297 12.740,10.520 12.873 C 10.673 12.964,10.745 12.980,11.000 12.979 C 11.212 12.979,11.341 12.957,11.440 12.905 C 11.632 12.805,15.739 8.705,15.873 8.480 C 15.964 8.328,15.980 8.254,15.980 8.000 C 15.980 7.746,15.963 7.672,15.872 7.516 C 15.617 7.083,15.121 6.903,14.640 7.068 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const MapPinCheckInsideIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const MapPinCheckInside = MapPinCheckInsideIcon;