Skip to content

Commit

Permalink
DataViews: Update pagination icons (WordPress#63594)
Browse files Browse the repository at this point in the history
Co-authored-by: ntsekouras <ntsekouras@git.wordpress.org>
Co-authored-by: jasmussen <joen@git.wordpress.org>
  • Loading branch information
3 people authored and carstingaxion committed Jul 18, 2024
1 parent 3a8e977 commit d70b1af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/dataviews/src/pagination.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
} from '@wordpress/components';
import { createInterpolateElement, memo } from '@wordpress/element';
import { sprintf, __, _x } from '@wordpress/i18n';
import { chevronRight, chevronLeft } from '@wordpress/icons';
import { next, previous } from '@wordpress/icons';

/**
* Internal dependencies
Expand Down Expand Up @@ -92,7 +92,7 @@ const Pagination = memo( function Pagination( {
disabled={ currentPage === 1 }
accessibleWhenDisabled
label={ __( 'Previous page' ) }
icon={ chevronLeft }
icon={ previous }
showTooltip
size="compact"
tooltipPosition="top"
Expand All @@ -104,7 +104,7 @@ const Pagination = memo( function Pagination( {
disabled={ currentPage >= totalPages }
accessibleWhenDisabled
label={ __( 'Next page' ) }
icon={ chevronRight }
icon={ next }
showTooltip
size="compact"
tooltipPosition="top"
Expand Down

0 comments on commit d70b1af

Please sign in to comment.