import Box from "@components/bases/Box"; import { Ionicons } from "@expo/vector-icons"; import { TouchableOpacity } from "react-native"; type Props = { onPress: () => void; }; const GoBackIconButton = ({ onPress }: Props) => { return ( ); }; export default GoBackIconButton;