I would like to arrange the PayPal and the Credit Card buttons horizontally as is described in the documentation. When I stacked them vertically, both buttons were displayed just fine. However, the Credit Button does not show in the horizontal layout...
<PayPalButtons
style={{
layout: 'horizontal',
color: 'silver',
shape: 'pill',
label: 'pay',
tagline: false,
height: 30}}
createOrder={(data, actions) =>
{return onCreate(data, actions);}}
onCancel={() => onCancel()}
onError={(err) => onError()}
onApprove={(data, actions) => onSuccess(data, actions)}
/>
Am I missing something?