react-native-paypal-buttons
Version:
React native implementation of PayPal Buttons
21 lines (20 loc) • 683 B
JavaScript
;
import { PaymentButton } from './PaymentButton';
import { PaymentButtonEdges, PaymentButtonFundingSource, PaymentButtonSize, PaymentButtonLabel, PayLaterButtonColor } from './types';
import { jsx as _jsx } from "react/jsx-runtime";
export const PayPalPayLaterButton = ({
color = PayLaterButtonColor.GOLD,
edges = PaymentButtonEdges.SOFT_EDGES,
size = PaymentButtonSize.EXPANDED,
...props
}) => {
return /*#__PURE__*/_jsx(PaymentButton, {
color: color,
label: PaymentButtonLabel.PAY_LATER,
edges: edges,
size: size,
fundingSource: PaymentButtonFundingSource.PAY_LATER,
...props
});
};
//# sourceMappingURL=PayPalPayLaterButton.js.map