Skip to content

meal-box

lab

brunch • lunch • dinner • tray • bento • sushi • noodles • culinary • cuisine • asian • japanese • chinese • oriental • eastern • microwave • ready • frozen • packaging

Contributors:

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

createIcons({
  icons: {
    mealBox
  }
});

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Meal
112
8
11