Skip to content

ticket-x

entry • pass • voucher • event • concert • show • cancelled • cancellation • refunded • used • void • invalidated • spoiled • denied • refused • banned • barred • forbidden • prohibited • delete • remove • clear • error • x

Created:

v0.314.0

Last changed:

v0.314.0

Contributors:

danielbayley
html
<i data-lucide="ticket-x"></i>
tsx
import { TicketX } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-ticket-x"></div>