// app/(tabs)/_layout.tsx import React from 'react'; import { Platform } from 'react-native'; import { Tabs } from 'expo-router'; import { useTheme } from '@react-navigation/native'; // Change this import import { Dumbbell, Library, Users, History, User } from 'lucide-react-native'; import { CUSTOM_COLORS } from '@/lib/constants'; export default function TabLayout() { const { colors } = useTheme(); return ( ( ), }} /> ( ), }} /> ( ), }} /> ( ), }} /> ( ), }} /> ); }