{toast.content}
{toast.description !== undefined && toast.description !== null ? (
{toast.description}
) : null}
{toast.input ? (
) : null}
{(actions.length || toast.cancel) && isOpen ? (
{actions.map((action, position) => (
))}
{toast.cancel ? (
) : null}
) : null}
{closeButton && dismissible ? (