Code QuizIntermediate

Customizing Tab Icons and Labels

Spot why the tab icon never appears in the tab bar.

Codejavascript
<Tab.Screen
  name="Home"
  component={HomeScreen}
  options={{
    tabBarIcon: <Icon name="home" size={24} />,
    tabBarLabel: 'Home',
  }}
/>

What is the bug in this code?