1.1.1 • Published 10 months ago
@natoune/svelte-daisyui-toast v1.1.1

Svelte DaisyUI Toast
A simple toaster component for Svelte with DaisyUI.
Inspired by Svelte French Toast.
Installation
npm install @natoune/svelte-daisyui-toastpnpm install @natoune/svelte-daisyui-toastyarn add @natoune/svelte-daisyui-toastUsage
Mount a <Toaster /> at the top level of your app and use the toast API to display toasts.
<script>
import toast, { Toaster } from '@natoune/svelte-daisyui-toast'
function handleClick() {
toast.success('Hello, world!')
}
</script>
<Toaster />
<button type="button" onclick={handleClick}>Toast</button>For more usage examples, see the website.
Thanks
Thanks to the original author of Svelte French Toast and its contributors.