Skip to content

brush-cleaning

cleaning • utensil • housekeeping • tool • sweeping • scrubbing • hygiene • maintenance • household • cleaner • chores • equipment • sanitation • bristles • handle • home care • sanitize • purify • wash • disinfect • sterilize • scrub • polish • decontaminate • wipe • spotless • remove • empty • erase • purge • eliminate

Created:

v0.505.0

Last changed:

v0.505.0

Contributors:

karsa-mistmere
js
import { createIcons, icons } from 'lucide';

createIcons({ icons });

document.body.append('<i data-lucide="brush-cleaning"></i>');  
tsx
import { BrushCleaning } from 'lucide-react';

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

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

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

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

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

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

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

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

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

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

<div class="icon-brush-cleaning"></div>

See this icon in action

Bug
Feature
Brush
112
8
11