Skip to content

badge-pound-sterling

discount • offer • sale • voucher • tag • monetization • marketing • finance • financial • exchange • transaction • payment • british • gbp • £

Created:

v0.272.0

Last changed:

v0.272.0

Contributors:

danielbayley
html
<i data-lucide="badge-pound-sterling"></i>
tsx
import { BadgePoundSterling } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-badge-pound-sterling"></div>