woocommerce-paypal-payments/modules/ppcp-settings/resources/js/Components/ReusableComponents/PaymentMethodIcon.js

12 lines
267 B
JavaScript
Raw Normal View History

import { Icon } from '@wordpress/components';
2024-10-23 08:56:47 +02:00
import data from '../../utils/data';
const PaymentMethodIcon = ( { type } ) => (
<Icon
icon={ data().getImage( `icon-button-${ type }.svg` ) }
className="ppcp--method-icon"
/>
);
2024-10-23 08:56:47 +02:00
export default PaymentMethodIcon;