import Swal from "sweetalert2";

export const alertSuccess = (message: string) => {
    return Swal.fire({
        icon: "success",
        title: "Berhasil",
        text: message,
        timer: 2000,
        showConfirmButton: false,
    });
};

export const alertError = (message: string) => {
    return Swal.fire({
        icon: "error",
        title: "Gagal",
        text: message,
    });
};

export const alertConfirm = (text: string) => {
    return Swal.fire({
        title: "Konfirmasi",
        text,
        icon: "warning",
        showCancelButton: true,
        confirmButtonText: "Ya",
        cancelButtonText: "Batal",
    });
};
