import { Linking, type StyleProp, type ViewStyle } from 'react-native'; import { ConstantsUtil } from '@reown/appkit-common-react-native'; import { FlexView, Icon, Pressable, Text } from '@reown/appkit-ui-react-native'; interface Props { style?: StyleProp; } export function ReownButton({ style }: Props) { return ( Linking.openURL(ConstantsUtil.REOWN_URL)} style={style}> UX by ); }