import { StyleSheet } from 'react-native'; import { IconLink, Text, FlexView } from '@reown/appkit-ui-react-native'; import { useInternalAppKit } from '../../../AppKitContext'; interface HeaderProps { onSettingsPress: () => void; } export function Header({ onSettingsPress }: HeaderProps) { const { back } = useInternalAppKit(); const handleGoBack = () => { back(); }; return ( Buy Crypto ); } const styles = StyleSheet.create({ icon: { height: 40, width: 40 } });