diff --git a/plugins/woocommerce-admin/client/marketplace/components/product-list-header/product-list-header.tsx b/plugins/woocommerce-admin/client/marketplace/components/product-list-header/product-list-header.tsx index 62043b77683..e26b2548294 100644 --- a/plugins/woocommerce-admin/client/marketplace/components/product-list-header/product-list-header.tsx +++ b/plugins/woocommerce-admin/client/marketplace/components/product-list-header/product-list-header.tsx @@ -1,9 +1,10 @@ /** * External dependencies */ -import { Link } from '@woocommerce/components'; -import { __ } from '@wordpress/i18n'; import clsx from 'clsx'; +import { Icon, chevronLeft, chevronRight } from '@wordpress/icons'; +import { Link } from '@woocommerce/components'; +import { isRTL, __ } from '@wordpress/i18n'; import { recordEvent } from '@woocommerce/tracks'; /** @@ -44,6 +45,7 @@ export default function ProductListHeader( } } > { __( 'See more', 'woocommerce' ) } + ) } diff --git a/plugins/woocommerce/changelog/update-add-chevron-see-more-product-list b/plugins/woocommerce/changelog/update-add-chevron-see-more-product-list new file mode 100644 index 00000000000..98417937a8e --- /dev/null +++ b/plugins/woocommerce/changelog/update-add-chevron-see-more-product-list @@ -0,0 +1,4 @@ +Significance: patch +Type: tweak +Comment: Add chevron to `See more` on the product listing component +