2020-01-06 22:28:09 +00:00
|
|
|
/**
|
|
|
|
* Internal dependencies
|
|
|
|
*/
|
|
|
|
import { applePayImage } from './apple-pay';
|
|
|
|
import { paypalImage } from './paypal';
|
|
|
|
|
2020-01-13 15:08:14 +00:00
|
|
|
export const ExpressApplePay = () => <img src={ applePayImage } alt="" />;
|
2020-01-06 22:28:09 +00:00
|
|
|
|
2020-01-13 15:08:14 +00:00
|
|
|
export const ExpressPaypal = () => <img src={ paypalImage } alt="" />;
|