mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-28 03:09:16 +08:00
16 lines
549 B
JavaScript
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>
|
|
);
|
|
}
|