import { Ionicons } from "@expo/vector-icons"; import { Pressable, StyleSheet } from "react-native"; export function NavigationHeader({ navigation, }: { navigation: { goBack: () => void }; }) { return ( navigation.goBack()} style={styles.container} > ); } const styles = StyleSheet.create({ container: { paddingHorizontal: 8, margin: 5, }, });