Toast Components

Import the Toast component and Icons.

<script>
	import { Toast } from 'flowbite-svelte';
	import { Fire, CheckCircle, PlusCircle, Archive, Mail } from 'svelte-heros';
</script>

Default toast

Use this simple toast component with an icon, message, and dismissable close button to show alert messages to your website visitors.

<Toast>
	<Fire slot="icon" />
	Dismissable user notification.
</Toast>

Simple toast

This component can be used to show simple messages and notifications without the use of a close button.

<Toast simple="{true}">
	<Mail slot="icon" />
	New message arrived.
</Toast>

Icons

For the right positioning of the icon use: slot="icon".

Icons are wrapped with blue background by default. Set the color name property to change it. Note, that if you want no color at all set property to empty string.

Use any icon components.

<Toast>
	<Archive slot="icon" />
	Default color is blue.
</Toast>

<Toast color="green">
	<Archive slot="icon" />
	Color set to green.
</Toast>

<Toast color="">
	<Archive slot="icon" />
	No color set.
</Toast>

<Toast> No icon at all. </Toast>

Autohide example

<script>
  let show = true;
  let counter = 6;

  function trigger() {
    show = true;
    counter = 6;
    timeout();
  }

  function timeout() {
    if (--counter > 0)
      return setTimeout(timeout, 1000);
    show = false;
  }
</script>

<Button on:click={trigger} class="my-3">Restart</Button>

<Toast simple transition="slide" bind:visible={show}>
  <CheckCircle slot="icon"/> Autohide in {counter}s.
</Toast>

Transitions

You can use one of Svelte/easing.

<Toast transition="slide">
	<CheckCircle slot="icon" />
	Transition type: slide
</Toast>

<Toast transition="slide" params="{{delay: 250, duration: 300, easing: quintOut}}">
	<CheckCircle slot="icon" />
	Transition type: slide, delay: 250, duration: 300, easing: quintOut
</Toast>

<Toast transition="slide" params="{{delay: 250, duration: 2000, easing: elasticOut}}">
	<CheckCircle slot="icon" />
	Transition type: slide, delay: 250, duration: 2000, easing: elasticOut
</Toast>

Blur examples

<Toast transition="blur" color="purple" params="{{amount: 10}}">
	<PlusCircle slot="icon" />
	Transition type: blur, amount: 10
</Toast>

<Toast transition="blur" color="purple" params="{{amount: 50, delay: 1000}}">
	<PlusCircle slot="icon" />
	Transition type: blur, amount: 50, delay 1000
</Toast>

Fly examples

<Toast transition="fly" params="{{x: 200}}" color="green">
	<Archive slot="icon" />
	Transition type: fly right
</Toast>

<Toast transition="fly" params="{{y: 200}}" color="green">
	<Archive slot="icon" />
	Transition type: fly down
</Toast>

Undo button

Use this toast component to also show an “undo” button to reverse the action of the user.

<Toast>
  <div class="inline-flex justify-between items-center w-full">
  Conversation archived.
  <a class="text-sm font-medium text-blue-600 p-1.5 hover:bg-blue-100 rounded-lg dark:text-blue-500 dark:hover:bg-gray-700" href="/">Undo</a>
  </div>
</Toast>

Extra content

Use the slot="extra" to add some more arbitrary content in the toast.

Toast message

This component can be used to show messages and a CTA button when receiveing chat messages, comment notifications, and other use cases.

<Toast>
	<div class="flex" slot="extra">
		<Avatar avatar={{src: '/images/profile-picture-1.webp', alt: 'My avatar 2', size: 12, round:
		true}}/>
		<div class="ml-3 text-sm font-normal">
			<span class="mb-1 text-sm font-semibold text-gray-900 dark:text-white">Jese Leos</span>
			<div class="mb-2 text-sm font-normal">
				Hi Neil, thanks for sharing your thoughts regarding Flowbite.
			</div>
			<Button size="xs">Replay</Button>
		</div>
	</div>
</Toast>

Push notification

This component can be used to show notifications for an action from another user such as posting a comment, receiving a like, being tagged. You can show an avatar, icon, message, and the time of the notification.

<Toast>
	<span class="font-semibold text-gray-900 dark:text-white">New notification</span>
	<div class="flex items-center mt-3" slot="extra">
		<Avatar avatar={{src: '/images/profile-picture-3.webp', alt: 'My avatar 2', size: 12, round:
		true}}/>
		<div class="ml-3">
			<h4 class="text-sm font-semibold text-gray-900 dark:text-white">Bonnie Green</h4>
			<div class="text-sm font-normal">commmented on your photo</div>
			<span class="text-xs font-medium text-blue-600 dark:text-blue-500">a few seconds ago</span>
		</div>
	</div>
</Toast>

Interactive toast

Use this interactive toast component to encourage users to make a certain action such as updating to the latest software version. You can set an icon, message, and two CTA buttons.

This is an example with the icon and extra content at the same time.

<Toast>
	<Refresh slot="icon" />
	<span class="font-semibold text-gray-900 dark:text-white">Update available</span>
	<div class="mt-3" slot="extra">
		<div class="mb-2 text-sm font-normal">A new software version is available for download.</div>
		<div class="grid grid-cols-2 gap-2">
			<Button size="xs" class="w-full">Update</Button>
			<Button size="xs" class="w-full" color="dark">Not now</Button>
		</div>
	</div>
</Toast>

Positioning

Use the position property to position these toast components relative to the main content wrapper element from your document.

<Toast simple position="tl">Top left positioning.</Toast>
<Toast simple position="tr">Top right positioning.</Toast>
<Toast simple position="bl">Bottom left positioning.</Toast>
<Toast simple position="br">Bottom right positioning.</Toast>

Props

The component has the following props, type, and default values. See types page for type information.

Name Type Default
color Colors 'blue'
simple boolean false
transition TransitionTypes 'fade'
params TransitionParamTypes {}

References