woocommerce-paypal-payments/modules/ppcp-local-alternative-payment-methods/resources/js/apm-block.js
2024-09-25 17:57:27 +04:00

16 lines
549 B
JavaScript

export function APM( { config, components } ) {
const { PaymentMethodIcons } = components;
return (
<div>
<div
className="wc-block-components-payment-method-icons wc-block-components-payment-method-icons--align-right">
<img
className={`wc-block-components-payment-method-icon wc-block-components-payment-method-icon--${config.id}`}
src={config.icon}
alt={config.title}
/>
</div>
</div>
);
}