Skip to content

plane-takeoff

departure • plane • trip • airplane • takeoff

Created:

v0.128.0

Last changed:

v0.128.0

Contributors:

karsa-mistmereit-is-not
html
<i data-lucide="plane-takeoff"></i>
tsx
import { PlaneTakeoff } from 'lucide-react';

const App = () => {
  return (
    <PlaneTakeoff />
  );
};

export default App;
vue
<script setup>
  import { PlaneTakeoff } from 'lucide-vue-next';
</script>

<template>
  <PlaneTakeoff />
</template>
svelte
<script>
import { PlaneTakeoff } from 'lucide-svelte';
</script>

<PlaneTakeoff />
tsx
import { PlaneTakeoff } from 'lucide-preact';

const App = () => {
  return (
    <PlaneTakeoff />
  );
};

export default App;
tsx
import { PlaneTakeoff } from 'lucide-solid';

const App = () => {
  return (
    <PlaneTakeoff />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, PlaneTakeoff } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ PlaneTakeoff })
  ],
})

// app.component.html
<lucide-icon name="plane-takeoff"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-plane-takeoff"></div>