a simple toast written by svelte
yarn add svelte-toast
import Toast from 'svelte-toast'
const toast = new Toast([opts])
toast.show('Hello Svelte'[, opts])
toast.info('Hello Svelte'[, opts])
toast.success('Hello Svelte'[, opts])
toast.error('Hello Svelte'[, opts])
option | description | values | default |
---|---|---|---|
position | position of toast | 'top-left', 'top-center', 'top-right', 'bottom-left', 'bottom-center', 'bottom-right' | 'bottom-center' |
duration | display time of toast | in millisecond | 2000 |
borderRadius | border radius styling | in pixels | 0 |
MIT