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, IconAlertTriangle,
IconArchive, IconArchive,
IconArrowBack, IconArrowBack,
IconArrowNarrowDown, IconArrowDown,
IconArrowNarrowUp,
IconArrowRight, IconArrowRight,
IconArrowUp,
IconArrowUpRight, IconArrowUpRight,
IconBell, IconBell,
IconBrandGithub, IconBrandGithub,

View File

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