dice-4
  
  html
  
<i data-lucide-name="dice-4"></i>
  
  tsx
  
import { Dice4 } from 'lucide-react';
const App = () => {
  return (
    <Dice4 />
  );
};
export default App;
  
  vue
  
<script setup>
  import { Dice4 } from 'lucide-vue-next';
</script>
<template>
  <Dice4 />
</template>
  
  svelte
  
<script>
import { Dice4 } from 'lucide-svelte';
</script>
<Dice4 />
  
  tsx
  
import { Dice4 } from 'lucide-preact';
const App = () => {
  return (
    <Dice4 />
  );
};
export default App;
  
  tsx
  
import { Dice4 } from 'lucide-solid';
const App = () => {
  return (
    <Dice4 />
  );
};
export default App;
  
  tsx
  
// app.module.ts
import { LucideAngularModule, Dice4 } from 'lucide-angular';
@NgModule({
  imports: [
    LucideAngularModule.pick({ Dice4 })
  ],
})
// app.component.html
<lucide-icon name="dice-4"></lucide-icon>
  
  html
  
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-dice-4"></div>
  
  dart
  
Icon(LucideIcons.dice-4);

