change tabler-icons (#1649)

This commit is contained in:
Ritesh-Purwar
2023-09-19 19:49:44 +05:30
committed by GitHub
parent ff4a2074e6
commit 07684c4f08
2 changed files with 4 additions and 8 deletions

View File

@ -5,9 +5,9 @@ export {
IconAlertTriangle,
IconArchive,
IconArrowBack,
IconArrowNarrowDown,
IconArrowNarrowUp,
IconArrowDown,
IconArrowRight,
IconArrowUp,
IconArrowUpRight,
IconBell,
IconBrandGithub,

View File

@ -2,7 +2,7 @@ import { type ReactNode, useContext } from 'react';
import styled from '@emotion/styled';
import { useRecoilValue } from 'recoil';
import { IconArrowNarrowDown, IconArrowNarrowUp } from '@/ui/icon/index';
import { IconArrowDown, IconArrowUp } from '@/ui/icon/index';
import { useRecoilScopedState } from '@/ui/utilities/recoil-scope/hooks/useRecoilScopedState';
import { useRecoilScopedValue } from '@/ui/utilities/recoil-scope/hooks/useRecoilScopedValue';
import { useRecoilScopeId } from '@/ui/utilities/recoil-scope/hooks/useRecoilScopeId';
@ -194,11 +194,7 @@ export const ViewBarDetails = ({
key={sort.key}
testId={sort.key}
labelValue={sort.definition.label}
Icon={
sort.direction === 'desc'
? IconArrowNarrowDown
: IconArrowNarrowUp
}
Icon={sort.direction === 'desc' ? IconArrowDown : IconArrowUp}
isSort
onRemove={() => handleSortRemove(sort.key)}
/>