mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 04:58:28 +08:00
21 lines
886 B
JavaScript
21 lines
886 B
JavaScript
import PaymentMethodIcon from './PaymentMethodIcon';
|
|
|
|
const PaymentMethodIcons = ( props ) => {
|
|
return (
|
|
<div className="ppcp-r-payment-method-icons">
|
|
<PaymentMethodIcon type="paypal" icons={ props.icons } />
|
|
<PaymentMethodIcon type="venmo" icons={ props.icons } />
|
|
<PaymentMethodIcon type="visa" icons={ props.icons } />
|
|
<PaymentMethodIcon type="mastercard" icons={ props.icons } />
|
|
<PaymentMethodIcon type="amex" icons={ props.icons } />
|
|
<PaymentMethodIcon type="discover" icons={ props.icons } />
|
|
<PaymentMethodIcon type="apple-pay" icons={ props.icons } />
|
|
<PaymentMethodIcon type="google-pay" icons={ props.icons } />
|
|
<PaymentMethodIcon type="sepa" icons={ props.icons } />
|
|
<PaymentMethodIcon type="ideal" icons={ props.icons } />
|
|
<PaymentMethodIcon type="bancontact" icons={ props.icons } />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PaymentMethodIcons;
|