TabBarIcon.js 358 B

123456789101112131415
  1. import { Ionicons } from '@expo/vector-icons';
  2. import * as React from 'react';
  3. import Colors from '../constants/Colors';
  4. export default function TabBarIcon(props) {
  5. return (
  6. <Ionicons
  7. name={props.name}
  8. size={30}
  9. style={{ marginBottom: -3 }}
  10. color={props.focused ? Colors.tabIconSelected : Colors.tabIconDefault}
  11. />
  12. );
  13. }