Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 1x | /**
* Styling Configuration for PayPal Buttons
*
* @see {@link https://https://developer.paypal.com/sdk/js/reference/#buttons} PayPal Style Reference
*/
// Styling configuration for PayPal buttons.
export const PAYPAL_BUTTON_STYLING = {
// PayPal express buttons on cart page.
cart: {
shape: 'sharp',
label: 'paypal',
height: 40,
tagline: false,
},
// PayPal checkout buttons on checkout (payment) page.
checkout: {
layout: 'horizontal',
shape: 'sharp',
label: 'paypal',
height: 40,
tagline: false,
},
};
|