lighthouse
html
<script>
import { createIcons, Lighthouse } from 'lucide';
createIcons({
icons: {
Lighthouse
}
});
</script>
<i data-lucide="lighthouse"></i>
tsx
import { Lighthouse } from 'lucide-react';
const App = () => {
return (
<Lighthouse />
);
};
export default App;
vue
<script setup>
import { Lighthouse } from '@lucide/vue';
</script>
<template>
<Lighthouse />
</template>
svelte
<script>
import { Lighthouse } from 'lucide-svelte';
</script>
<Lighthouse />
tsx
import { Lighthouse } from 'lucide-preact';
const App = () => {
return (
<Lighthouse />
);
};
export default App;
tsx
import { Lighthouse } from 'lucide-solid';
const App = () => {
return (
<Lighthouse />
);
};
export default App;
tsx
// app.module.ts
import { LucideAngularModule, Lighthouse } from 'lucide-angular';
@NgModule({
imports: [
LucideAngularModule.pick({ Lighthouse })
],
})
// app.component.html
<lucide-icon name="lighthouse"></lucide-icon>
html
<div class="icon-lighthouse"></div>
See this icon in action
Bug
Feature
Lighthouse
112
8
11