We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1153d55 commit 1fd5a86Copy full SHA for 1fd5a86
packages/bottom-tabs/src/index.tsx
@@ -8,7 +8,10 @@ export {
8
/**
9
* Views
10
*/
11
-export { default as BottomTabBar } from './views/BottomTabBar';
+export {
12
+ default as BottomTabBar,
13
+ Props as BottomTabBarProps,
14
+} from './views/BottomTabBar';
15
16
17
* Types
packages/bottom-tabs/src/views/BottomTabBar.tsx
@@ -22,7 +22,7 @@ type State = {
22
visible: Animated.Value;
23
};
24
25
-type Props = BottomTabBarProps & {
+export type Props = BottomTabBarProps & {
26
activeTintColor: string;
27
inactiveTintColor: string;
28
safeAreaInset: React.ComponentProps<typeof SafeAreaView>['forceInset'];
0 commit comments