react-native-paypal-buttons
Version:
React native implementation of PayPal Buttons
13 lines • 525 B
TypeScript
import { PaymentButtonColor, PaymentButtonFundingSource, PaymentButtonSize } from './types';
type LogoType = 'credit' | 'paypal' | 'paypal_monogram';
type LogoVariant = 'blue' | 'color' | 'monochrome';
interface LogoInfo {
type: LogoType;
variant: LogoVariant;
uri: number;
width: number;
height: number;
}
export declare const getLogoInfo: (fundingSource: PaymentButtonFundingSource, size: PaymentButtonSize, backgroundColor: PaymentButtonColor) => LogoInfo;
export {};
//# sourceMappingURL=logo.d.ts.map