From da7cf716d8755653aca3d77097696d60e478ce57 Mon Sep 17 00:00:00 2001 From: Boro Sitnikovski Date: Tue, 10 Sep 2024 18:28:31 +0200 Subject: [PATCH] Add chevron after See more to the list header (#51199) * Add chevron after See more to the list header * Changelog * Correct changelog path * Alphabetically ordered imports :) --- .../components/product-list-header/product-list-header.tsx | 6 ++++-- .../changelog/update-add-chevron-see-more-product-list | 4 ++++ 2 files changed, 8 insertions(+), 2 deletions(-) create mode 100644 plugins/woocommerce/changelog/update-add-chevron-see-more-product-list 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 +