import React from "react"; import Swal from "sweetalert2"; import "./SweetAlert.css"; const SweetToast = () => { const sweetAlert1 = () => { Swal.fire({ icon: "error", title: "ارور شماره 1", showCloseButton: true, toast: true, position: "top-end", customClass: { title: "error-toast-title", closeButton: "error-toast-closeButton", popup: "error-toast-modalBox", }, showConfirmButton: false, timer: 3000, timerProgressBar: true, didOpen: (toast) => { toast.addEventListener("mouseenter", Swal.stopTimer); toast.addEventListener("mouseleave", Swal.resumeTimer); }, }); }; const sweetAlert2 = () => { Swal.fire({ icon: "success", title: "ارور شماره 2", showCloseButton: true, toast: true, position: "top-end", customClass: { title: "success-toast-title", closeButton: "success-toast-closeButton", popup: "success-toast-modalBox", }, showConfirmButton: false, timer: 3000, timerProgressBar: true, didOpen: (toast) => { toast.addEventListener("mouseenter", Swal.stopTimer); toast.addEventListener("mouseleave", Swal.resumeTimer); }, }); }; const sweetAlert3 = () => { Swal.fire({ title: "ارور شماره 1", showCloseButton: true, toast: true, position: "top-end", customClass: { title: "error-toast-title", closeButton: "error-toast-closeButton", popup: "error-toast-modalBox", }, showConfirmButton: false, }); }; const sweetAlert4 = () => { Swal.fire({ title: "ارور شماره 2", showCloseButton: true, toast: true, position: "top-end", customClass: { title: "success-toast-title", closeButton: "success-toast-closeButton", popup: "success-toast-modalBox", }, showConfirmButton: false, }); }; const sweetAlert5 = () => { Swal.fire({ title: "ارور شماره 1", showCloseButton: true, toast: true, position: "top-end", customClass: { title: "error-toast-title", closeButton: "error-toast-closeButton", popup: "error-toast-modalBox", }, showConfirmButton: false, timer: 3000, timerProgressBar: true, didOpen: (toast) => { toast.addEventListener("mouseenter", Swal.stopTimer); toast.addEventListener("mouseleave", Swal.resumeTimer); }, }); }; const sweetAlert6 = () => { Swal.fire({ title: "ارور شماره 2", showCloseButton: true, toast: true, position: "top-end", customClass: { title: "success-toast-title", closeButton: "success-toast-closeButton", popup: "success-toast-modalBox", }, showConfirmButton: false, timer: 3000, timerProgressBar: true, didOpen: (toast) => { toast.addEventListener("mouseenter", Swal.stopTimer); toast.addEventListener("mouseleave", Swal.resumeTimer); }, }); }; return (
); }; export default SweetToast;