mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 10:55:00 +08:00
15 lines
303 B
JavaScript
15 lines
303 B
JavaScript
import React from 'react';
|
|
|
|
const GenericIcon = ( { imageName, className = '', alt = '' } ) => {
|
|
const pathToImages = global.ppcpSettings.assets.imagesUrl;
|
|
|
|
return (
|
|
<img
|
|
className={ className }
|
|
alt={ alt }
|
|
src={ `${ pathToImages }${ imageName }` }
|
|
/>
|
|
);
|
|
};
|
|
|
|
export default GenericIcon;
|