Kinda unexpected that the classNames.default applies the class to all toasts and not just toast('My message'), which means it's no different to classNames.toast
<li
tabIndex={0}
ref={toastRef}
className={cn(
className,
toastClassname,
classNames?.toast,
toast?.classNames?.toast,
classNames?.default, // <--- Why is this applied on all toasts and not just the default toast?
classNames?.[toastType],
toast?.classNames?.[toastType],
)}
Can create a PR if this is unexpected