react-native-paypal-buttons
Version:
React native implementation of PayPal Buttons
10 lines • 545 B
TypeScript
import type { PressableProps, ViewStyle } from 'react-native';
import { PaymentButtonEdges, PaymentButtonSize, PayLaterButtonColor } from './types';
export interface PayPalPayLaterButtonProps extends PressableProps {
style?: ViewStyle;
color?: PayLaterButtonColor;
edges?: PaymentButtonEdges | number;
size?: PaymentButtonSize;
}
export declare const PayPalPayLaterButton: ({ color, edges, size, ...props }: PayPalPayLaterButtonProps) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=PayPalPayLaterButton.d.ts.map