import { toast } from "react-toastify"; import { Box, Typography } from "@mui/material"; import { Beenhere } from "@mui/icons-material"; export const successToast = (toastContainer) => toast.success( () => ( {"عملیات با موفقیت انجام شد"} ), { icon: false, containerId: toastContainer, autoClose: 3000, hideProgressBar: true, pauseOnHover: true, closeOnClick: false, draggable: true, } );