import { TouchableOpacity, Text } from "react-native"; interface ForgotPasswordLinkProps { onPress: () => void; isResetting: boolean; disabled: boolean; } export const ForgotPasswordLink = ({ onPress, isResetting, disabled, }: ForgotPasswordLinkProps) => { return ( {isResetting ? "Sending reset email..." : "Forgot Password?"} ); };