Skip to content

burger

lab

hamburger • cheeseburger • meat • patty • bun • fast food • junk food • takeaway • takeout • snack • dish • restaurant • lunch • meal • savory • savoury • cookery • cooking • grilled • barbecue • barbeque • bbq

Contributors:

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

createIcons({
  icons: {
    burger
  }
});

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

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

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

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

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

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

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

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

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

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

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