fix(toast): ToastOptions interface now contains icon prop (#23737)

resolves #23736
This commit is contained in:
Liam DeBeasi
2021-08-06 16:30:34 -04:00
committed by GitHub
parent 3befdc32de
commit fbd32ffb26
2 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,7 @@ interface ToastOptions {
position?: 'top' | 'bottom' | 'middle';
translucent?: boolean;
animated?: boolean;
icon?: string;
color?: Color;
mode?: Mode;

View File

@ -10,6 +10,7 @@ export interface ToastOptions {
position?: 'top' | 'bottom' | 'middle';
translucent?: boolean;
animated?: boolean;
icon?: string;
color?: Color;
mode?: Mode;