Skip to content

bee

lab

bumble • buzz • busy • productivity • pollen • pollinate • honey • hive • keeper • garden • insect • antennae • flying • wings • sting • swarm • wasp

Contributors:

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

createIcons({
  icons: {
    bee
  }
});

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Bee
112
8
11