menu
Snackbar

Snackbars are used to notify the user about an event that occured.
Basic Snackbar

Follow the below mentioned code example to create a snackbar.
Can't send photo. Retry in 5 seconds.
<div class="snackbar-wrapper">
<div class="snack-text">
    Can't send photo. Retry in 5 seconds.
</div>
<div class="snack-btn-wrap">
    <button class="snack-btn">RETRY</button>
    <button class="snack-btn">
    <i class="material-icons snack-close">close</i>
    </button>
</div>
</div>