mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 10:55:00 +08:00
10 lines
199 B
JavaScript
10 lines
199 B
JavaScript
|
export function Bancontact( { config, components } ) {
|
||
|
const { PaymentMethodIcons } = components;
|
||
|
|
||
|
return (
|
||
|
<div>
|
||
|
<PaymentMethodIcons icons={ [ config.icon ] } align="right" />
|
||
|
</div>
|
||
|
);
|
||
|
}
|