UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 3.1 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-traffic-cone" 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.419 1.058 C 10.464 1.232,9.567 1.973,9.223 2.872 C 9.137 3.097,8.007 7.051,6.673 11.800 C 6.496 12.427,6.322 13.029,6.286 13.138 L 6.220 13.336 4.133 14.284 C 2.985 14.805,1.966 15.287,1.868 15.354 C 1.624 15.523,1.344 15.843,1.219 16.098 C 0.927 16.696,0.931 17.312,1.231 17.920 C 1.381 18.223,1.797 18.629,2.121 18.787 C 2.572 19.006,10.649 22.687,10.897 22.785 C 11.600 23.065,12.401 23.065,13.103 22.785 C 13.370 22.678,21.698 18.893,21.967 18.756 C 22.062 18.708,22.258 18.549,22.403 18.404 C 23.192 17.611,23.200 16.414,22.420 15.617 C 22.132 15.322,22.188 15.351,19.794 14.259 C 18.752 13.785,17.866 13.374,17.825 13.347 C 17.753 13.299,17.651 12.973,17.163 11.220 C 16.373 8.384,14.859 3.087,14.780 2.880 C 14.280 1.572,12.852 0.798,11.419 1.058 M12.511 3.147 C 12.828 3.343,12.888 3.470,13.241 4.715 C 13.418 5.340,13.557 5.856,13.550 5.864 C 13.506 5.908,12.456 6.000,12.000 6.000 C 11.543 6.000,10.494 5.908,10.450 5.864 C 10.419 5.832,11.086 3.580,11.163 3.455 C 11.433 3.018,12.068 2.872,12.511 3.147 M10.560 7.903 C 11.511 8.037,12.777 8.018,13.735 7.856 C 13.930 7.823,14.097 7.804,14.107 7.813 C 14.116 7.823,14.292 8.422,14.497 9.145 L 14.870 10.460 14.724 10.528 C 14.493 10.635,13.900 10.797,13.400 10.889 C 13.014 10.960,12.788 10.974,12.000 10.974 C 11.212 10.974,10.986 10.960,10.600 10.889 C 10.101 10.797,9.508 10.635,9.276 10.528 L 9.130 10.460 9.465 9.280 C 9.649 8.631,9.819 8.030,9.843 7.946 C 9.883 7.799,9.892 7.792,10.013 7.818 C 10.083 7.832,10.329 7.871,10.560 7.903 M9.760 12.759 C 10.544 12.934,10.988 12.978,11.980 12.979 C 13.208 12.980,13.921 12.882,14.930 12.571 C 15.188 12.492,15.408 12.435,15.418 12.444 C 15.427 12.454,15.563 12.918,15.719 13.475 C 16.042 14.627,16.042 14.627,15.749 14.906 C 15.528 15.117,15.374 15.221,15.048 15.377 C 14.181 15.794,13.249 15.977,12.000 15.977 C 10.761 15.977,9.958 15.821,8.942 15.381 C 8.560 15.215,8.071 14.795,8.019 14.588 C 7.997 14.503,8.071 14.209,8.462 12.817 L 8.575 12.414 8.997 12.549 C 9.230 12.623,9.573 12.717,9.760 12.759 M6.338 15.700 C 7.474 17.638,11.402 18.547,14.697 17.634 C 16.090 17.247,17.165 16.548,17.659 15.705 L 17.761 15.531 19.359 16.256 C 20.238 16.654,20.958 16.990,20.959 17.003 C 20.960 17.027,12.678 20.803,12.350 20.928 C 12.087 21.027,11.866 21.017,11.555 20.889 C 11.072 20.691,3.042 17.020,3.041 16.998 C 3.040 16.982,5.820 15.695,6.226 15.523 C 6.230 15.521,6.280 15.601,6.338 15.700 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const TrafficConeIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const TrafficCone = TrafficConeIcon;