Skip to content

tally-3

count • score • enumerate • days • three • 3 • third • triple • bars • prison • cell • sentence

Created:

v0.256.0

Last changed:

v0.256.0

Contributors:

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

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

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

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

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

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

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

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

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

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

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

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