Skip to content

sparkle

star • effect • filter • night • magic • shiny • glitter • twinkle • celebration

Created:

v0.219.0

Last changed:

v0.378.0

Contributors:

Shiva953karsa-mistmere
html
<i data-lucide="sparkle"></i>
tsx
import { Sparkle } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

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