Skip to content

eclipse

lunar • solar • crescent moon • sun • earth • day • night • planet • space • mode • dark • light • toggle • switch • color • css • styles • display • accessibility • contrast • brightness • blend • shade

Created:

v0.310.0

Last changed:

v0.310.0

Contributors:

danielbayley
html
<i data-lucide="eclipse"></i>
tsx
import { Eclipse } from 'lucide-react';

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

export default App;
vue
<script setup>
  import { Eclipse } from 'lucide-vue-next';
</script>

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

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

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

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

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

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

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

// app.component.html
<lucide-icon name="eclipse"></lucide-icon>
html
<style>
@import ('~lucide-static/font/Lucide.css');
</style>

<div class="icon-eclipse"></div>