import { Tabs } from "expo-router"; import { Image, type ImageSourcePropType, View } from "react-native"; import { icons } from "@/constants"; const TabIcon = ({ source, focused, alt, }: { source: ImageSourcePropType; alt: string; focused: boolean; }) => ( {alt} ); const TabsLayout = () => ( ( ), }} /> ( ), }} /> ( ), }} /> ( ), }} /> ); export default TabsLayout;