Preview:
const snackbarBaseline = document.querySelector(".snackbar-baseline");
const snackbarLeading = document.querySelector(".snackbar-leading");

const closeSnackbar = (snackbarType) => {
  if (snackbarType === "baseline") {
    setTimeout(() => {
      snackbarBaseline.classList.add("hide");
    }, 3000);
  } else if (snackbarType === "leading") {
    setTimeout(() => {
      snackbarLeading.classList.add("hide");
    }, 3000);
  }
};
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter