Skip to content

dice-1

dice • random • tabletop • 1 • board • game

Created:

v0.17.15

Last changed:

v0.133.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="dice-1"></i>
tsx
import { Dice1 } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-dice-1"></div>
dart
Icon(LucideIcons.dice-1);