diff --git a/types/react-native-navigation/index.d.ts b/types/react-native-navigation/index.d.ts index a48adf180e..9571a406bf 100644 --- a/types/react-native-navigation/index.d.ts +++ b/types/react-native-navigation/index.d.ts @@ -40,10 +40,18 @@ export interface TabBasedApp { animationType?: 'none' | 'slide-down' | 'fade'; } +export interface IconInsets { + top?: number; + left?: number; + bottom?: number; + right?: number; +} + export interface TabScreen { label?: string; screen: string; icon?: any; + iconInsets?: IconInsets; selectedIcon?: any; title?: string; navigatorStyle?: NavigatorStyle;