Skip to content

toothbrush

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

Created:

v1.44.0

Last changed:

v1.44.0

Contributors:

jamiemlawkarsa-mistmere
html
<script>
import { createIcons, Toothbrush } from 'lucide';

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

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Toothbrush
112
8
11