import ReportIcon from "@mui/icons-material/Report"; import { Box, Divider, Typography } from "@mui/material"; import { toast } from "react-toastify"; const WarningNotification = (directionApp, t, status) => { toast( ({ closeToast }) => ( <> {t("warning")} ({t("code")}: {status}) {t("warning_static_text")} ), { position: directionApp === "ltr" ? "top-left" : "top-right", autoClose: false, closeOnClick: false, draggable: false, } ); }; export default WarningNotification;