Skip to content

banknote-x

bill • currency • money • payment • funds • transaction • cash • finance • error • failed • rejected • canceled • declined • lost • delete • remove

Created:

v0.485.0

Last changed:

v0.485.0

Contributors:

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

createIcons({ icons });

document.body.append('<i data-lucide="banknote-x"></i>');  
tsx
import { BanknoteX } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Banknote
112
8
11