import React from 'react'; import { Tabs } from 'expo-router'; import { Platform } from 'react-native'; import Svg, { Path } from 'react-native-svg'; const HomeIcon = ({ color }: { color: string }) => ( ); const ChargingIcon = ({ color }: { color: string }) => ( ); const AccountIcon = ({ color }: { color: string }) => ( ); export default function TabLayout() { return ( ( ) }} /> ( ) }} /> ( ) }} /> ); }