Skip to content

Commit 4bacfdb

Browse files
fix(ArrowsAltVIcon): Replace ArrowsAltVIcon with RhUiArrowUpDownIcon (#12498)
Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent a859511 commit 4bacfdb

2 files changed

Lines changed: 66 additions & 258 deletions

File tree

packages/react-table/src/components/Table/SortColumn.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { useState } from 'react';
22
import RhMicronsArrowUpIcon from '@patternfly/react-icons/dist/esm/icons/rh-microns-arrow-up-icon';
33
import RhMicronsArrowDownIcon from '@patternfly/react-icons/dist/esm/icons/rh-microns-arrow-down-icon';
4-
import ArrowsAltVIcon from '@patternfly/react-icons/dist/esm/icons/arrows-alt-v-icon';
4+
import RhUiArrowUpDownIcon from '@patternfly/react-icons/dist/esm/icons/rh-ui-arrow-up-down-icon';
55
import { css } from '@patternfly/react-styles';
66
import styles from '@patternfly/react-styles/css/components/Table/table';
77
import { TableText } from './TableText';
@@ -45,7 +45,7 @@ export const SortColumn: React.FunctionComponent<SortColumnProps> = ({
4545
if (isSortedBy) {
4646
SortedByIcon = sortDirection === SortByDirection.asc ? RhMicronsArrowUpIcon : RhMicronsArrowDownIcon;
4747
} else {
48-
SortedByIcon = ArrowsAltVIcon;
48+
SortedByIcon = RhUiArrowUpDownIcon;
4949
}
5050

5151
if (favoriteButtonProps) {

0 commit comments

Comments
 (0)