Skip to content

badge-dollar-sign

discount • offer • sale • voucher • tag • monetization • marketing • finance • financial • exchange • transaction • payment • usd • $

Created:

v0.217.0

Last changed:

v0.217.0

Contributors:

karsa-mistmerejguddas
html
<i data-lucide="badge-dollar-sign"></i>
tsx
import { BadgeDollarSign } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-badge-dollar-sign"></div>