Files
nobat724_front/app/CustomToastify.js
T
2024-10-26 00:51:59 +03:30

19 lines
371 B
JavaScript

import { ToastContainer } from "react-toastify";
import TickAlert from "@/components/icons/TickAlert";
function CustomToastify() {
return (
<ToastContainer
rtl
closeOnClick
autoClose={3000}
closeButton={false}
icon={<TickAlert />}
position="top-center"
hideProgressBar={true}
/>
);
}
export default CustomToastify;