Skip to content

broom

broomstick • brush • sweep • sweeping • floor • cleaning • housekeeping • chores • tidy • spotless • dust • debris • bristles • handle • janitor • maintenance • witch • halloween

Created:

v1.30.0

Last changed:

v1.30.0

Contributors:

danielbayleykarsa-mistmere
html
<script>
import { createIcons, broom } from 'lucide';

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

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Broom
112
8
11