Skip to content

kebab

lab

shish • skewer • meat • fast food • junk food • snack • meal • savory • savoury • cookery • cooking • grilled • barbecue • barbeque • bbq

Contributors:

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

createIcons({
  icons: {
    kebab
  }
});

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Kebab
112
8
11