How to create fully custom toast bar #134
-
Hi I am working on a large CSS codebase and I want to customize the toast bar. |
Beta Was this translation helpful? Give feedback.
Answered by
TastyDucks
Nov 30, 2021
Replies: 1 comment 1 reply
-
You may add a className or other styles by modifying the ToastOptions in your If you want to use entirely custom JSX, you can use |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
gamegee
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You may add a className or other styles by modifying the ToastOptions in your
useToast
orToaster
: https://react-hot-toast.com/docs/toastIf you want to use entirely custom JSX, you can use
toast.custom(<div>Something</div>)