From ff3a0f697bb65b14c364035899829ce2ed74b34d Mon Sep 17 00:00:00 2001 From: Kevin Date: Wed, 18 Jun 2025 10:18:34 -0500 Subject: [PATCH] fix: updating icons --- src/components/CustomIcon.tsx | 10 ++++++++++ src/components/Explorer/FileExplorerHeaderActions.tsx | 4 ++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/src/components/CustomIcon.tsx b/src/components/CustomIcon.tsx index 6efd5ff76..0403a8732 100644 --- a/src/components/CustomIcon.tsx +++ b/src/components/CustomIcon.tsx @@ -1453,6 +1453,16 @@ const CustomIconMap = { /> ), + subtract: ( + + + + ), + collapse: ( + + + + ) } as const export type CustomIconName = keyof typeof CustomIconMap diff --git a/src/components/Explorer/FileExplorerHeaderActions.tsx b/src/components/Explorer/FileExplorerHeaderActions.tsx index 5196dc9d0..521865991 100644 --- a/src/components/Explorer/FileExplorerHeaderActions.tsx +++ b/src/components/Explorer/FileExplorerHeaderActions.tsx @@ -52,7 +52,7 @@ export const FileExplorerHeaderActions = ({ Element="button" data-testid="create-folder-button" iconStart={{ - icon: 'refresh', + icon: 'subtract', iconClassName: '!text-current', bgClassName: 'bg-transparent', }} @@ -66,7 +66,7 @@ export const FileExplorerHeaderActions = ({ Element="button" data-testid="create-folder-button" iconStart={{ - icon: 'clone', + icon: 'collapse', iconClassName: '!text-current', bgClassName: 'bg-transparent', }}