Make Klaviyo icon shows up in installed extensions card.

This commit is contained in:
Gan Eng Chin 2023-06-27 23:29:16 +08:00
parent c00f569091
commit 9d473adeb7
No known key found for this signature in database
GPG Key ID: 94D5D972860ADB01
2 changed files with 21 additions and 0 deletions

View File

@ -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';

View File

@ -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;