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