ghost
  
  html
  
<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-next';
</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
  
<style>
@import ('~lucide-static/font/Lucide.css');
</style>
<div class="icon-ghost"></div>
  
  dart
  
Icon(LucideIcons.ghost);

