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',
}}