Skip to content

lighthouse

lighthouse • beacon • coast • navigation • tower • sea • ocean • maritime • guide • safety • light • shine • port • marine • faro • signal • nautical • harbor • shore • lightbeam • wayfinding • guidance • onboarding • help • landmark

Created:

v1.40.0

Last changed:

v1.40.0

Contributors:

xouguikarsa-mistmere
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