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