Skip to content

Commit

Permalink
fix: changed TabsSharedProps to optional
Browse files Browse the repository at this point in the history
  • Loading branch information
yicru committed Sep 28, 2020
1 parent abfba3f commit a26bd5b
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/index.d.ts
Expand Up @@ -48,13 +48,13 @@ export interface IconProps {
}

export interface TabsSharedProps {
tabTextActiveStyle: TextStyle;
tabTextContainerActiveStyle: ViewStyle;
tabTextContainerStyle: ViewStyle;
tabTextStyle: TextStyle;
tabWrapperStyle: ViewStyle;
tabs: Tab[];
tabsContainerStyle: ViewStyle;
tabTextActiveStyle?: TextStyle;
tabTextContainerActiveStyle?: ViewStyle;
tabTextContainerStyle?: ViewStyle;
tabTextStyle?: TextStyle;
tabWrapperStyle?: ViewStyle;
tabs?: Tab[];
tabsContainerStyle?: ViewStyle;
}

export type TabbedHeaderProps = SharedProps &
Expand Down

0 comments on commit a26bd5b

Please sign in to comment.