Skip to content

tickets-plane

plane • trip • airplane • flight • travel • fly • takeoff • vacation • passenger • pass • check-in • airport

Created:

v0.428.0

Last changed:

v0.428.0

Contributors:

jguddas
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="tickets-plane"></i>');  
tsx
import { TicketsPlane } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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