19 lines
371 B
JavaScript
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;
|