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