html
<script>
import { createIcons, tally2 } from 'lucide';
createIcons({
icons: {
tally2
}
});
</script>
<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
<div class="icon-tally-2"></div>
See this icon in action
Bug
Feature
Tally
112
8
11