import { View, Text, TouchableOpacity } from "react-native"; interface AuthFooterProps { question: string; actionText: string; onPress: () => void; disabled?: boolean; } export const AuthFooter = ({ question, actionText, onPress, disabled, }: AuthFooterProps) => { return ( {question} {actionText} ); };