import { Tabs } from 'expo-router'
import { View, Text, StyleSheet } from 'react-native'
import { COLORS } from '../../constants/Config'
function TabIcon({ icon, label, focused }: { icon: string; label: string; focused: boolean }) {
return (
{icon}
{label}
)
}
const tab = StyleSheet.create({
wrap: { alignItems: 'center', paddingTop: 4, paddingHorizontal: 2 },
active: {},
icon: { fontSize: 21 },
label: { fontSize: 10, color: COLORS.muted, marginTop: 2, letterSpacing: 0.2 },
labelActive: { color: COLORS.accent, fontWeight: '700' },
})
export default function TabLayout() {
return (
,
}}
/>
,
}}
/>
,
}}
/>
,
}}
/>
,
}}
/>
,
}}
/>
,
}}
/>
,
}}
/>
,
}}
/>
)
}