Skip to content

tally-2

count • score • enumerate • days • two • 2 • second • double • bars • prison • cell • sentence

Created:

v0.256.0

Last changed:

v0.256.0

Contributors:

ericfenniskarsa-mistmere
html
<i data-lucide="tally-2"></i>
tsx
import { Tally2 } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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