diff --git a/plugins/woocommerce-blocks/assets/js/base/components/checkout/no-shipping/index.js b/plugins/woocommerce-blocks/assets/js/base/components/checkout/no-shipping/index.js
index ea723f4853d..cd9ec18483c 100644
--- a/plugins/woocommerce-blocks/assets/js/base/components/checkout/no-shipping/index.js
+++ b/plugins/woocommerce-blocks/assets/js/base/components/checkout/no-shipping/index.js
@@ -2,7 +2,7 @@
* External dependencies
*/
import { __ } from '@wordpress/i18n';
-import { Placeholder, Button } from '@wordpress/components';
+import { Placeholder, Button } from 'wordpress-components';
import { Icon, truck } from '@woocommerce/icons';
import { ADMIN_URL } from '@woocommerce/settings';
diff --git a/plugins/woocommerce-blocks/assets/js/base/components/tabs/index.js b/plugins/woocommerce-blocks/assets/js/base/components/tabs/index.js
index ba204e18bf5..edd7f342400 100644
--- a/plugins/woocommerce-blocks/assets/js/base/components/tabs/index.js
+++ b/plugins/woocommerce-blocks/assets/js/base/components/tabs/index.js
@@ -2,7 +2,7 @@
* External dependencies
*/
import { useState } from '@wordpress/element';
-import { withInstanceId } from '@wordpress/compose';
+import withComponentId from '@woocommerce/base-hocs/with-component-id';
import classnames from 'classnames';
import { __ } from '@wordpress/i18n';
@@ -41,7 +41,7 @@ const Tabs = ( {
tabs,
activeClass = 'is-active',
initialTabName,
- instanceId,
+ componentId,
ariaLabel = __( 'Tabbed Content', 'woo-gutenberg-products-block' ),
children,
} ) => {
@@ -59,7 +59,7 @@ const Tabs = ( {
if ( ! selectedTab ) {
throw new Error( 'There is no available tab for the selected item' );
}
- const selectedId = `${ instanceId }-${ selectedTab.name }`;
+ const selectedId = `${ componentId }-${ selectedTab.name }`;
return (
diff --git a/plugins/woocommerce-blocks/assets/js/icons/library/card.js b/plugins/woocommerce-blocks/assets/js/icons/library/card.js
index b40389ad152..4a6c24f4e2d 100644
--- a/plugins/woocommerce-blocks/assets/js/icons/library/card.js
+++ b/plugins/woocommerce-blocks/assets/js/icons/library/card.js
@@ -1,7 +1,7 @@
/**
* External dependencies
*/
-import { SVG } from '@wordpress/components';
+import { SVG } from 'wordpress-components';
const card = (