Skip to content

toothbrush-sparkles

dental care • oral hygiene • brushing • teeth • dentist • bathroom • toiletries • personal care • cleaning • bristles • handle • plaque • toothpaste • selfcare • grooming • fresh • clean

Created:

v1.44.0

Last changed:

v1.44.0

Contributors:

jamiemlawkarsa-mistmerejguddas
html
<script>
import { createIcons, ToothbrushSparkles } from 'lucide';

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

<i data-lucide="toothbrush-sparkles"></i>  
tsx
import { ToothbrushSparkles } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Toothbrush
112
8
11