diff --git a/src/components/GoBackIconButton.tsx b/src/components/GoBackIconButton.tsx new file mode 100644 index 0000000..05033b5 --- /dev/null +++ b/src/components/GoBackIconButton.tsx @@ -0,0 +1,18 @@ +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;