diff --git a/core/src/components/toast/readme.md b/core/src/components/toast/readme.md index 8983111e71..2f95f88b93 100644 --- a/core/src/components/toast/readme.md +++ b/core/src/components/toast/readme.md @@ -41,6 +41,7 @@ interface ToastOptions { position?: 'top' | 'bottom' | 'middle'; translucent?: boolean; animated?: boolean; + icon?: string; color?: Color; mode?: Mode; diff --git a/core/src/components/toast/toast-interface.ts b/core/src/components/toast/toast-interface.ts index b4e0e4d134..175fdf1325 100644 --- a/core/src/components/toast/toast-interface.ts +++ b/core/src/components/toast/toast-interface.ts @@ -10,6 +10,7 @@ export interface ToastOptions { position?: 'top' | 'bottom' | 'middle'; translucent?: boolean; animated?: boolean; + icon?: string; color?: Color; mode?: Mode;