change tabler-icons (#1649)
This commit is contained in:
@ -5,9 +5,9 @@ export {
|
|||||||
IconAlertTriangle,
|
IconAlertTriangle,
|
||||||
IconArchive,
|
IconArchive,
|
||||||
IconArrowBack,
|
IconArrowBack,
|
||||||
IconArrowNarrowDown,
|
IconArrowDown,
|
||||||
IconArrowNarrowUp,
|
|
||||||
IconArrowRight,
|
IconArrowRight,
|
||||||
|
IconArrowUp,
|
||||||
IconArrowUpRight,
|
IconArrowUpRight,
|
||||||
IconBell,
|
IconBell,
|
||||||
IconBrandGithub,
|
IconBrandGithub,
|
||||||
|
|||||||
@ -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)}
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user