<button
class= "btn btn-default"
on:click= {() = > {
addNotification({
id: generateId(),
text:
'Welcome to Svelte Argon Dashboard Pro - a beautiful resource for every web developer',
position: 'top-left',
notifyClassNames: 'top left',
icon: 'ni ni-bell-55',
type: 'default',
removeAfter: 4000
});
}}>
Top Left
</button>
<button
class= "btn btn-default"
on:click= {() = > {
addNotification({
id: generateId(),
text:
'Welcome to Svelte Argon Dashboard Pro - a beautiful resource for every web developer',
position: 'top-center',
notifyClassNames: 'top center',
icon: 'ni ni-bell-55',
type: 'default',
removeAfter: 4000
});
}}>
Top Center
</button>
<button
class= "btn btn-default"
on:click= {() = > {
addNotification({
id: generateId(),
text:
'Welcome to Svelte Argon Dashboard Pro - a beautiful resource for every web developer',
position: 'top-right',
notifyClassNames: 'top right',
icon: 'ni ni-bell-55',
type: 'default',
removeAfter: 4000
});
}}>
Top Right
</button>
<button
class= "btn btn-default"
on:click= {() = > {
addNotification({
id: generateId(),
text:
'Welcome to Svelte Argon Dashboard Pro - a beautiful resource for every web developer',
position: 'bottom-left',
notifyClassNames: 'bottom left',
icon: 'ni ni-bell-55',
type: 'default',
removeAfter: 4000
});
}}>
Bottom Left
</button>
<button
class= "btn btn-default"
on:click= {() = > {
addNotification({
id: generateId(),
text:
'Welcome to Svelte Argon Dashboard Pro - a beautiful resource for every web developer',
position: 'bottom-center',
notifyClassNames: 'bottom center',
icon: 'ni ni-bell-55',
type: 'default',
removeAfter: 4000
});
}}>
Bottom Center
</button>
<button
class= "btn btn-default"
on:click= {() = > {
addNotification({
id: generateId(),
text:
'Welcome to Svelte Argon Dashboard Pro - a beautiful resource for every web developer',
position: 'bottom-right',
notifyClassNames: 'bottom right',
icon: 'ni ni-bell-55',
type: 'default',
removeAfter: 4000
});
}}>
Bottom Right
</button>