Lucide V1 发布了!🚀
你现在浏览的是 v1 站点,如需查看 v0,请前往 v0 站点

Skip to content

plane-landing

arrival • plane • trip • airplane • landing

创建时间:

v0.128.0

最后修改:

v0.128.0

Contributors:

karsa-mistmereit-is-not
html
<script>
import { createIcons, planeLanding } from 'lucide';

createIcons({
  icons: {
    planeLanding
  }
});
</script>

<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';
</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
<div class="icon-plane-landing"></div>

看看这个图标的实际效果

错误
功能
Plane
112
8
11