mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 14:57:26 +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>
|
|
);
|
|
}
|