I'm using this toaster, it works fine but I'm struggling to change it's style.
This is my code so far:
import { ToastContainer, toast } from 'react-toastify';
import 'react-toastify/dist/ReactToastify.css';
function App(){
const notify = () => toast("Thanks! We saved your changes.!");
return (
<div>
<button onClick={notify}>Notify!</button>
<ToastContainer
className="toaster-container"
position="top-right"
autoClose={111111100}
hideProgressBar={true}
newestOnTop={false}
closeOnClick
rtl={false}
pauseOnFocusLoss
draggable
pauseOnHover/>
</div>
);
}
I want to make it look like this:
Added a css class, (className="toaster-container") I can see it in inspect mode, it is the container that has a div, which has another div inside and there is the actual toaster.
I can change the text but cannot make bold only a part of it like in the above picture neither to add an icon there.
Any suggestions?
