Skip to content

toast

lab

bread • butter • spread • jam • conserve • preserve • marmalade • continental breakfast • brunch • meal • morning

Contributors:

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

createIcons({
  icons: {
    toast
  }
});

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

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

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

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

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

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

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

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

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

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

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

See this icon in action

Bug
Feature
Toast
112
8
11