UNPKG

react-native-paypal-buttons

Version:
12 lines 702 B
import { type PressableProps, type ViewStyle } from 'react-native'; import { PaymentButtonColor, type PaymentButtonEdges, type PaymentButtonFundingSource, type PaymentButtonLabel, type PaymentButtonSize } from './types'; export interface PaymentButtonProps extends PressableProps { fundingSource: PaymentButtonFundingSource; color: PaymentButtonColor; edges: PaymentButtonEdges | number; label: PaymentButtonLabel; size: PaymentButtonSize; style?: ViewStyle; } export declare const PaymentButton: ({ fundingSource, color: backgroundColor, edges, label, size, ...props }: PaymentButtonProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=PaymentButton.d.ts.map