We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4eb2c50 commit ac4371fCopy full SHA for ac4371f
1 file changed
src/components/Toast/Toast.tsx
@@ -8,7 +8,8 @@ import { Alert, AlertProps } from '../Alert';
8
// Animation taken from https://medium.com/@norbajunior/react-native-facebook-and-instagram-like-top-bar-notifications-with-animated-api-43c48d0443dd
9
export type ToastId = string;
10
11
-export interface ToastSettings extends Omit<AlertProps, 'onClose'> {
+export interface ToastSettings
12
+ extends Omit<Omit<AlertProps, 'onClose'>, 'theme'> {
13
id?: ToastId;
14
offset?: number;
15
/* duration for how long the toast should stay active */
0 commit comments