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

16 lines
303 B
JavaScript
Raw Normal View History

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;