import { useColorScheme } from 'react-native'; import Svg, { Path } from 'react-native-svg'; export const PoweredByLogo = (props: any) => { const isLightTheme = useColorScheme() === 'light'; const logoColor = isLightTheme ? '#A4A4A4' : '#F9F9F9'; return ( ); };