UNPKG

@react-three/uikit-lucide

Version:

lucide icons for r3/uikit

10 lines (9 loc) 2.9 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-plane-landing" 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="M10.581 1.603 C 10.242 1.772,10.209 1.828,8.848 4.547 L 7.543 7.153 7.397 7.078 C 7.100 6.927,7.029 6.786,6.983 6.256 C 6.950 5.866,6.785 5.410,6.550 5.059 C 6.233 4.584,5.925 4.349,5.033 3.900 C 4.311 3.536,4.268 3.520,4.018 3.520 C 3.590 3.520,3.295 3.700,3.100 4.082 C 2.950 4.375,1.096 8.565,1.041 8.736 C 0.971 8.951,1.012 9.286,1.134 9.492 C 1.253 9.693,3.223 11.655,3.481 11.829 C 3.829 12.064,17.093 18.668,17.443 18.780 C 17.951 18.944,18.490 18.956,19.480 18.825 C 20.589 18.679,20.948 18.536,21.440 18.041 C 21.890 17.590,22.127 17.012,22.130 16.360 C 22.133 15.760,22.014 15.457,21.327 14.304 C 20.974 13.711,20.649 13.339,20.232 13.052 C 20.072 12.940,18.887 12.323,17.600 11.680 C 15.031 10.396,15.014 10.386,14.903 9.989 C 14.871 9.874,14.681 8.547,14.481 7.040 C 14.282 5.533,14.091 4.192,14.059 4.060 C 13.914 3.475,13.476 2.821,12.972 2.440 C 12.824 2.327,12.380 2.075,11.987 1.878 C 11.298 1.533,11.262 1.520,11.006 1.522 C 10.823 1.523,10.690 1.548,10.581 1.603 M11.822 4.087 C 12.099 4.331,12.093 4.299,12.500 7.334 C 12.707 8.881,12.896 10.235,12.920 10.342 C 13.085 11.076,13.594 11.796,14.243 12.210 C 14.362 12.287,15.504 12.872,16.780 13.511 C 18.747 14.497,19.125 14.700,19.265 14.847 C 19.500 15.092,20.128 16.183,20.128 16.344 C 20.128 16.670,19.996 16.743,19.216 16.844 C 18.069 16.993,19.039 17.399,11.317 13.539 L 4.599 10.180 3.898 9.478 L 3.197 8.776 3.836 7.339 C 4.187 6.548,4.491 5.896,4.510 5.890 C 4.563 5.872,4.802 6.045,4.891 6.166 C 4.947 6.242,4.980 6.376,5.003 6.628 C 5.048 7.116,5.196 7.557,5.439 7.927 C 5.766 8.425,6.022 8.622,6.942 9.085 C 7.683 9.458,7.762 9.488,7.982 9.490 C 8.286 9.493,8.532 9.387,8.730 9.166 C 8.833 9.052,9.285 8.190,10.168 6.423 L 11.456 3.846 11.568 3.904 C 11.629 3.936,11.743 4.018,11.822 4.087 M1.695 21.057 C 1.466 21.129,1.256 21.299,1.128 21.516 C 1.037 21.672,1.020 21.746,1.020 22.000 C 1.020 22.256,1.036 22.328,1.131 22.489 C 1.256 22.702,1.449 22.864,1.670 22.943 C 1.893 23.023,22.107 23.023,22.330 22.943 C 22.551 22.864,22.744 22.702,22.869 22.489 C 22.964 22.328,22.980 22.256,22.980 22.000 C 22.980 21.746,22.963 21.672,22.872 21.516 C 22.740 21.293,22.533 21.128,22.290 21.055 C 22.027 20.976,1.948 20.978,1.695 21.057 " stroke="none" fill-rule="evenodd" fill="black"></path></svg>`; export const PlaneLandingIcon = /*@__PURE__*/ forwardRef((props, ref) => { return _jsx(Icon, { ...props, ref: ref, text: text, svgWidth: 24, svgHeight: 24 }); }); export const PlaneLanding = PlaneLandingIcon;