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