UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.39 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-x-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 M9.044 6.625 C 8.787 6.753,8.583 7.016,8.529 7.289 C 8.482 7.527,8.535 7.851,8.649 8.019 C 8.694 8.085,9.147 8.559,9.655 9.070 L 10.579 10.000 9.655 10.930 C 9.147 11.442,8.695 11.914,8.651 11.980 C 8.376 12.389,8.513 13.026,8.940 13.320 C 9.238 13.525,9.740 13.540,10.017 13.352 C 10.085 13.306,10.558 12.853,11.070 12.345 L 12.000 11.421 12.930 12.345 C 13.442 12.853,13.915 13.306,13.981 13.351 C 14.262 13.541,14.762 13.525,15.065 13.317 C 15.478 13.033,15.618 12.376,15.351 11.981 C 15.306 11.915,14.853 11.442,14.345 10.930 L 13.421 10.001 14.369 9.050 C 15.074 8.343,15.337 8.052,15.398 7.914 C 15.695 7.241,15.230 6.518,14.502 6.521 C 14.089 6.522,13.997 6.588,12.950 7.631 L 12.000 8.578 11.050 7.631 C 10.371 6.954,10.049 6.661,9.920 6.603 C 9.654 6.483,9.313 6.492,9.044 6.625 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const MapPinXInsideIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const MapPinXInside = MapPinXInsideIcon;