import { Button } from "react-native-paper"; import { ReactNode } from "react"; interface AuthButtonProps { onPress: () => void; loading?: boolean; disabled?: boolean; textColor?: string; children: ReactNode; className?: string; } export const AuthButton = ({ onPress, loading = false, disabled = false, children, }: AuthButtonProps) => { return ( ); };