import BeenhereIcon from "@mui/icons-material/Beenhere"; import {Box, Typography} from "@mui/material"; import {toast} from "react-toastify"; const SuccessNotification = (t, status) => { toast( () => ( <> {t("notifications.success")} ({t("notifications.code")}:{" "} {status}) {t("notifications.success_static_text")} ), { autoClose: 3000, hideProgressBar: true, pauseOnHover: true, closeOnClick: false, draggable: true, } ); }; export default SuccessNotification;