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