react-native-paypal-buttons
Version:
React native implementation of PayPal Buttons
12 lines • 702 B
TypeScript
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