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