Make Klaviyo icon shows up in installed extensions card.
This commit is contained in:
parent
c00f569091
commit
9d473adeb7
|
@ -31,6 +31,9 @@ export { default as mailchimpForWoocommerce } from './library/mailchimp';
|
|||
// MailPoet
|
||||
export { default as mailpoet } from './library/mailpoet';
|
||||
|
||||
// Klaviyo
|
||||
export { default as klaviyo } from './library/klaviyo';
|
||||
|
||||
// Creative Mail by Constant Contact
|
||||
export { default as creativeMailByConstantContact } from './library/creative-mail';
|
||||
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
/**
|
||||
* External dependencies
|
||||
*/
|
||||
import { __ } from '@wordpress/i18n';
|
||||
|
||||
/**
|
||||
* Internal dependencies
|
||||
*/
|
||||
import { WC_ASSET_URL } from '~/utils/admin-settings';
|
||||
|
||||
const klaviyo = (
|
||||
<img
|
||||
src={ `${ WC_ASSET_URL }images/marketing/klaviyo.png` }
|
||||
alt={ __( 'Klaviyo', 'woocommerce' ) }
|
||||
/>
|
||||
);
|
||||
|
||||
export default klaviyo;
|
Loading…
Reference in New Issue