React Snackbar - Soft UI

PRO

The SoftSnackbar component helps you to simply create a beautiful notification/alert. It uses MUI Snackbar in base and you can use all of the props from MUI Snackbar for the SoftSnackbar component.

The components will be visible on the bottom right corner of the page.


The below codes are editable and you can modify them the way you want directly from your browser, please use the green button or the ctrl + s to save the changes.

Demo

// Soft UI Dashboard PRO React Components import SoftSnackbar from "components/SoftSnackbar";

Props Information

NameTypeDefaultDescription
color'primary''secondary''info''success''warning''error''light''dark'infoChange the SoftSnackbar type.
icon*nodeUsed to set the SoftSnackbar icon, its a required prop.
title*stringUsed to set the SoftSnackbar title, its a required prop.
dateTime*stringUsed to set the SoftSnackbar date or time, its a required prop.
content*nodeUsed to set the SoftSnackbar content or description, its a required prop.
bgWhiteboolfalseUsed to set the SoftSnackbar background color to white.
close*functionUsed to close the SoftSnackbar once the user hit the close button, its a required prop.
MUI PropsYou can pass all of the MUI Snackbar props for the SoftSnackbar as well.

Functionality

The below code contains a full exmaple of the SoftSnackbar, you can check the functionality as well that how the SoftSnackbar toggles between visible and invisible states.