mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-27 01:22:18 +08:00
22 lines
582 B
JavaScript
22 lines
582 B
JavaScript
export function APM( { config, components } ) {
|
|
const { PaymentMethodIcons } = components;
|
|
|
|
return (
|
|
<>
|
|
{ config.description && (
|
|
<div
|
|
dangerouslySetInnerHTML={ { __html: config.description } }
|
|
/>
|
|
) }
|
|
{ config.icon && (
|
|
<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>
|
|
) }
|
|
</>
|
|
);
|
|
}
|