Skip to content

ghost

spirit • haunt • specter • apparition • wraith • shade • phantom • entity • shadow • silhouette • pac-man • spooky • halloween • haunted • invisible • hidden • empty • dead • obsolete • outdated

Created:

v0.15.5

Last changed:

v1.35.0

Contributors:

mittalyashuericfennisjguddas
html
<script>
import { createIcons, Ghost } from 'lucide';

createIcons({
  icons: {
    Ghost
  }
});
</script>

<i data-lucide="ghost"></i>  
tsx
import { Ghost } from 'lucide-react';

const App = () => {
  return (
    <Ghost />
  );
};

export default App;
vue
<script setup>
import { Ghost } from '@lucide/vue';
</script>

<template>
  <Ghost />
</template>
svelte
<script>
import { Ghost } from 'lucide-svelte';
</script>

<Ghost />
tsx
import { Ghost } from 'lucide-preact';

const App = () => {
  return (
    <Ghost />
  );
};

export default App;
tsx
import { Ghost } from 'lucide-solid';

const App = () => {
  return (
    <Ghost />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule, Ghost } from 'lucide-angular';

@NgModule({
  imports: [
    LucideAngularModule.pick({ Ghost })
  ],
})

// app.component.html
<lucide-icon name="ghost"></lucide-icon>
html
<div class="icon-ghost"></div>

See this icon in action

Bug
Feature
Ghost
112
8
11