Skip to content

wallet-minimal

finance • pocket

Created:

v0.252.0

Last changed:

v0.352.0

Contributors:

danielbayley
html
<i data-lucide="wallet-minimal"></i>
tsx
import { WalletMinimal } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-wallet-minimal"></div>