I am getting this error in the React-native typeScript projectI got the solution in iosbut I am not able to see icons in Android
const Tab = createMaterialBottomTabNavigator(); export const HomeTab = () => { return (<Tab.Navigator initialRouteName="LoginScreen" //inactiveColor="coral" activeColor="#e91e63" barStyle={{backgroundColor: 'tomato'}}><Tab.Screen name="Expandable" component={Expandable} options={{ tabBarLabel: 'Contacts', tabBarIcon: ({color}) => (<MaterialCommunityIcons name="account-box" color={color} size={26} /> ), }} /> /></Tab.Navigator> );}