import type { ComponentProps } from 'react'; import { Tabs } from 'expo-router'; import { useTranslation } from 'react-i18next'; import FontAwesome from '@expo/vector-icons/FontAwesome'; import { useAppearance } from '@/src/context/AppearanceContext'; function TabIcon(props: { name: ComponentProps['name']; color: string }) { return ; } export default function TabLayout() { const { t } = useTranslation(); const { colors } = useAppearance(); return ( , }} /> , }} /> , }} /> , }} /> , }} /> , }} /> , }} /> ); }