import { FontAwesome } from '@expo/vector-icons'; import Colors from '../constants/Colors'; type Props = { focused?: boolean; color?: string; } & React.ComponentProps; export default function TabBarIcon({ color = Colors.dark.shade300, focused, ...rest }: Props) { return ( ); }