UNPKG

react-native-paypal-buttons

Version:
21 lines (20 loc) 683 B
"use strict"; 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