From fed2541e2d321104bf73a70a9af150c654cc001e Mon Sep 17 00:00:00 2001 From: Arno V Date: Wed, 17 Apr 2024 14:06:57 -0400 Subject: [PATCH] fix(Table): slightly larger sort indicator icons (#515) ## Summary by CodeRabbit - **Style** - Updated icon sizes in the table component for consistent styling. --- packages/ui-components/src/components/Table/Table.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/ui-components/src/components/Table/Table.tsx b/packages/ui-components/src/components/Table/Table.tsx index d5795e42..5af85086 100644 --- a/packages/ui-components/src/components/Table/Table.tsx +++ b/packages/ui-components/src/components/Table/Table.tsx @@ -191,12 +191,12 @@ export const TableCellSort = ({ > {sortDirection === TableCellSortDirections.ASC && sortedCell === cellId ? ( - + ) : sortDirection === TableCellSortDirections.DESC && sortedCell === cellId ? ( - + ) : ( - + )}