This component can be used for toast or snackbar component. Toast is mostly used to show feedback message. Snackbar is to used show message that need user action
Add toast class to wrapper. Toast has 3 themes toast-success, toast-error, toast-inform class to style the theme.
<div class="toast toast-success">Saved!</div> | |
<div class="toast toast-error"> | |
Not Saved! ,Try again later | |
</div> | |
<div class="toast toast-inform">Saving to Server...</div> | |