Skip to content

Commit d519746

Browse files
mstigglebrentvatne
authored andcommitted
Remove nonexistent icon from tab-based-navigation.md (react-navigation#383)
* Removed the nonexistant icon ios-options-outline * Changed in versioned docs
1 parent ffe69ff commit d519746

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/tab-based-navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export default createBottomTabNavigator(
7272
// You can check the implementation below.
7373
IconComponent = HomeIconWithBadge;
7474
} else if (routeName === 'Settings') {
75-
iconName = `ios-options${focused ? '' : '-outline'}`;
75+
iconName = `ios-options`;
7676
}
7777

7878
// You can return any component that you like here!

website/versioned_docs/version-3.x/tab-based-navigation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export default createBottomTabNavigator(
7373
// You can check the implementation below.
7474
IconComponent = HomeIconWithBadge;
7575
} else if (routeName === 'Settings') {
76-
iconName = `ios-options${focused ? '' : '-outline'}`;
76+
iconName = `ios-options`;
7777
}
7878

7979
// You can return any component that you like here!

0 commit comments

Comments
 (0)