Skip to content

tally-5

count • score • enumerate • days • five • 5 • fifth • bars • prison • cell • sentence • slash • /

Created:

v0.256.0

Last changed:

v0.256.0

Contributors:

danielbayley
html
<i data-lucide="tally-5"></i>
tsx
import { Tally5 } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-tally-5"></div>