forked from coracle/flotilla
18 lines
374 B
Svelte
18 lines
374 B
Svelte
<script lang="ts">
|
|
import {fly} from "@lib/transition"
|
|
import {toast} from "@app/toast"
|
|
</script>
|
|
|
|
{#if $toast}
|
|
{#key $toast.id}
|
|
<div transition:fly class="toast z-toast">
|
|
<div
|
|
role="alert"
|
|
class="alert flex justify-center"
|
|
class:alert-error={$toast.theme === "error"}>
|
|
{$toast.message}
|
|
</div>
|
|
</div>
|
|
{/key}
|
|
{/if}
|