plane-landing
  
  html
  
<i data-lucide="plane-landing"></i>
  
  tsx
  
import { PlaneLanding } from 'lucide-react';
const App = () => {
  return (
    <PlaneLanding />
  );
};
export default App;
  
  vue
  
<script setup>
  import { PlaneLanding } from 'lucide-vue-next';
</script>
<template>
  <PlaneLanding />
</template>
  
  svelte
  
<script>
import { PlaneLanding } from 'lucide-svelte';
</script>
<PlaneLanding />
  
  tsx
  
import { PlaneLanding } from 'lucide-preact';
const App = () => {
  return (
    <PlaneLanding />
  );
};
export default App;
  
  tsx
  
import { PlaneLanding } from 'lucide-solid';
const App = () => {
  return (
    <PlaneLanding />
  );
};
export default App;
  
  tsx
  
// app.module.ts
import { LucideAngularModule, PlaneLanding } from 'lucide-angular';
@NgModule({
  imports: [
    LucideAngularModule.pick({ PlaneLanding })
  ],
})
// app.component.html
<lucide-icon name="plane-landing"></lucide-icon>
  
  html
  
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-plane-landing"></div>
  
  dart
  
Icon(LucideIcons.plane-landing);

