project setup

This commit is contained in:
Sone
2025-11-02 10:08:56 +01:00
commit 568838003e
174 changed files with 27100 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
import { TouchableOpacity, Text } from "react-native";
interface ForgotPasswordLinkProps {
onPress: () => void;
isResetting: boolean;
disabled: boolean;
}
export const ForgotPasswordLink = ({
onPress,
isResetting,
disabled,
}: ForgotPasswordLinkProps) => {
return (
<TouchableOpacity
className="items-center mt-4"
onPress={onPress}
disabled={disabled || isResetting}
>
<Text className="text-primaryPurple">
{isResetting ? "Sending reset email..." : "Forgot Password?"}
</Text>
</TouchableOpacity>
);
};