Skip to content

ticket-slash

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

Created:

v0.314.0

Last changed:

v0.314.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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