Skip to content

receipt-euro

bill • voucher • slip • check • counterfoil • currency • €

Created:

v0.312.0

Last changed:

v0.312.0

Contributors:

danielbayley
html
<i data-lucide="receipt-euro"></i>
tsx
import { ReceiptEuro } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-receipt-euro"></div>