Allow suppliing whole body to toasts

Signed-off-by: Šimon Brandner <simon.bra.ag@gmail.com>
This commit is contained in:
Šimon Brandner
2021-07-24 13:35:54 +02:00
parent ff37b8cc79
commit 07be6dd780
2 changed files with 17 additions and 9 deletions
+3 -1
View File
@@ -22,11 +22,13 @@ export interface IToast<C extends ComponentClass> {
key: string;
// higher priority number will be shown on top of lower priority
priority: number;
title: string;
title?: string;
icon?: string;
component: C;
className?: string;
props?: Omit<React.ComponentProps<C>, "toastKey">; // toastKey is injected by ToastContainer
supplyWholeBody?: boolean;
content?: JSX.Element;
}
/**