UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.97 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-parking-meter" 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.240 1.044 C 10.344 1.123,9.364 1.401,8.499 1.822 C 5.848 3.111,4.135 5.729,4.013 8.680 C 3.969 9.743,4.110 10.612,4.533 11.880 C 5.543 14.913,6.862 18.742,6.967 18.952 C 7.120 19.255,7.496 19.623,7.812 19.778 C 8.234 19.984,8.360 19.999,9.728 20.000 L 10.995 20.000 11.008 21.153 L 11.020 22.307 11.141 22.503 C 11.543 23.156,12.457 23.156,12.859 22.503 L 12.980 22.307 12.992 21.153 L 13.005 20.000 14.272 20.000 C 15.640 19.999,15.766 19.984,16.188 19.778 C 16.504 19.623,16.880 19.255,17.033 18.952 C 17.142 18.736,18.737 14.097,19.499 11.780 C 19.965 10.365,20.095 9.258,19.939 8.052 C 19.706 6.258,18.953 4.684,17.726 3.427 C 16.032 1.692,13.685 0.830,11.240 1.044 M13.164 3.117 C 14.190 3.322,15.115 3.778,15.950 4.492 C 17.292 5.638,18.066 7.444,17.988 9.240 C 17.947 10.170,18.009 9.962,16.144 15.460 L 15.289 17.980 12.000 17.980 L 8.711 17.980 7.495 14.400 C 6.263 10.769,6.114 10.287,6.041 9.681 C 5.809 7.766,6.596 5.735,8.050 4.492 C 9.032 3.653,10.164 3.160,11.420 3.025 C 11.766 2.988,12.788 3.041,13.164 3.117 M11.358 5.061 C 9.725 5.316,8.421 6.580,8.079 8.241 C 7.959 8.826,7.980 9.241,8.144 9.508 C 8.539 10.150,9.458 10.154,9.851 9.515 C 9.943 9.366,9.972 9.258,10.001 8.955 C 10.047 8.473,10.122 8.230,10.314 7.937 C 10.810 7.181,11.661 6.848,12.523 7.073 C 13.047 7.210,13.552 7.629,13.797 8.129 C 13.911 8.362,13.945 8.522,14.021 9.165 C 14.051 9.412,14.236 9.694,14.465 9.839 C 14.938 10.139,15.558 9.992,15.856 9.508 C 15.956 9.345,15.977 9.264,15.991 8.988 C 16.021 8.393,15.784 7.540,15.421 6.932 C 14.834 5.949,13.756 5.232,12.605 5.058 C 12.144 4.989,11.816 4.990,11.358 5.061 M11.695 11.057 C 11.466 11.129,11.256 11.299,11.128 11.516 L 11.020 11.700 11.008 12.844 L 10.996 13.988 10.784 14.036 C 10.515 14.096,10.270 14.275,10.129 14.514 C 10.036 14.672,10.020 14.745,10.020 15.000 C 10.020 15.256,10.036 15.328,10.131 15.489 C 10.192 15.592,10.304 15.725,10.381 15.783 C 10.646 15.985,10.730 15.996,12.000 15.996 C 13.270 15.996,13.354 15.985,13.619 15.783 C 13.696 15.725,13.808 15.592,13.869 15.489 C 13.964 15.328,13.980 15.256,13.980 15.000 C 13.980 14.745,13.964 14.672,13.871 14.514 C 13.730 14.275,13.485 14.096,13.216 14.036 L 13.004 13.988 12.992 12.844 L 12.980 11.700 12.872 11.516 C 12.628 11.101,12.150 10.915,11.695 11.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const ParkingMeterIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const ParkingMeter = ParkingMeterIcon;