mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
11 lines
288 B
JavaScript
11 lines
288 B
JavaScript
import PaymentMethodIcon from './PaymentMethodIcon';
|
|
|
|
const PaymentMethodIcons = ( { icons = [] } ) => (
|
|
<div className="ppcp-r-payment-method-icons">
|
|
{ icons.map( ( type ) => (
|
|
<PaymentMethodIcon key={ type } type={ type } />
|
|
) ) }
|
|
</div>
|
|
);
|
|
|
|
export default PaymentMethodIcons;
|