Adding custom css styling to the credit card input doesnt work, it seems the style
prop is not recognised.
const cardClassSelectors = {
input: {
backgroundColor: '#2D2D2D',
color: '#FFFFFF',
fontFamily: 'helvetica neue, sans-serif',
},
};
<CreditCardInput
style={cardClassSelectors}
submitButtonId="nextStep"
overrideStyles={overrideStyles}
/>
How can I get this to work?