diff --git a/example/ios/Podfile.lock b/example/ios/Podfile.lock index 07c67a2..807771f 100644 --- a/example/ios/Podfile.lock +++ b/example/ios/Podfile.lock @@ -1806,7 +1806,7 @@ PODS: - ReactCommon/turbomodule/core - SocketRocket - Yoga - - react-native-wallet (0.1.9): + - react-native-wallet (0.1.10): - boost - DoubleConversion - fast_float @@ -2613,7 +2613,7 @@ SPEC CHECKSUMS: React-Mapbuffer: e402e7a0535b2213c50727553621480fe8cd8ade React-microtasksnativemodule: a63ce5595016996a9bac1f10c70a7a7fe6506649 react-native-safe-area-context: c6e2edd1c1da07bdce287fa9d9e60c5f7b514616 - react-native-wallet: e929bf18d6f4ac35ee263ff4319e9ef107ae2cd9 + react-native-wallet: d94a1e8eabd6a6b65c0e96eb4f73545838d559ea React-NativeModulesApple: b3766e1f87b08064ebc459b9e1538da2447ca874 React-oscompat: 34f3d3c06cadcbc470bc4509c717fb9b919eaa8b React-perflogger: a1edb025fd5d44f61bf09307e248f7608d7b2dcf diff --git a/src/AddToWalletButton.tsx b/src/AddToWalletButton.tsx index 568f632..5ce1b05 100644 --- a/src/AddToWalletButton.tsx +++ b/src/AddToWalletButton.tsx @@ -12,11 +12,7 @@ interface NativeWalletButtonProps { borderRadius?: number; } -type Props = { - style?: ViewStyle; - buttonStyle?: ButtonStyle; - buttonType?: ButtonType; - borderRadius?: number; +type Props = NativeWalletButtonProps & { onPress?: (e: GestureResponderEvent) => void; };