import { StyleSheet, type StyleProp, type ViewStyle } from 'react-native'; import { UpgradeWalletButton } from './upgrade-wallet-button'; import { ListSocial, Spacing, Text } from '@reown/appkit-ui-react-native'; import type { SocialProvider } from '@reown/appkit-common-react-native'; export interface AuthButtonsProps { onUpgradePress: () => void; onPress: () => void; socialProvider?: SocialProvider; text: string; style?: StyleProp; } export function AuthButtons({ onUpgradePress, onPress, socialProvider, text, style }: AuthButtonsProps) { return ( <> {socialProvider ? ( {text} ) : null} ); } const styles = StyleSheet.create({ actionButton: { marginBottom: Spacing.xs }, upgradeButton: { marginBottom: Spacing.s }, socialContainer: { justifyContent: 'flex-start', width: '100%' }, socialText: { flex: 1, marginLeft: Spacing.s } });