Skip to content

bucket

lab

handle • container • fill • liquid • water • seaside • summer holiday • beach • sandcastle • sandbox • toys • kids • children • play • gardening • equipment • spade • shovel • catch • fishing • crabs

Contributors:

danielbayley
js
import { createIcons, icons } from 'lucide';
import { bucket } from '@lucide/lab';

createIcons({
  icons: {
    bucket
  }
});

document.body.append('<i data-lucide="bucket"></i>');  
tsx
import { Icon } from 'lucide-react';
import { bucket } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={bucket} />
  );
};

export default App;
vue
<script setup>
import { Icon } from 'lucide-vue-next';
import { bucket } from '@lucide/lab';
</script>

<template>
  <Icon :iconNode="bucket" />
</template>
svelte
<script>
import { Icon } from 'lucide-svelte';
import { bucket } from '@lucide/lab';
</script>

<Icon iconNode={bucket} />
tsx
import { Icon } from 'lucide-preact';
import { bucket } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={bucket} />
  );
};

export default App;
tsx
import { Icon } from 'lucide-solid';
import { bucket } from '@lucide/lab';

const App = () => {
  return (
    <Icon iconNode={bucket} />
  );
};

export default App;
tsx
// app.module.ts
import { LucideAngularModule } from 'lucide-angular';
import { bucket } from '@lucide/lab';

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

// app.component.html
<lucide-icon name="bucket"></lucide-icon>

See this icon in action

Bug
Feature
Bucket
112
8
11