summaryrefslogtreecommitdiffhomepage
path: root/packages/ui/src/components
diff options
context:
space:
mode:
authorMaharshi Patel <[email protected]>2026-02-06 07:18:45 -0500
committerGitHub <[email protected]>2026-02-06 06:18:45 -0600
commitd4fcc1b863b9f0ada5ac74863c67581e225d8869 (patch)
treee2b0208d6c043547e7dc5ebe3d438ee8fbb7e028 /packages/ui/src/components
parent6c0dce67110d811cc5df918cad1c3b50e6b308ce (diff)
downloadopencode-d4fcc1b863b9f0ada5ac74863c67581e225d8869.tar.gz
opencode-d4fcc1b863b9f0ada5ac74863c67581e225d8869.zip
fix(ui): add Windows File Explorer icon for session header (#12386)
Diffstat (limited to 'packages/ui/src/components')
-rw-r--r--packages/ui/src/components/app-icon.tsx2
-rw-r--r--packages/ui/src/components/app-icons/types.ts1
2 files changed, 3 insertions, 0 deletions
diff --git a/packages/ui/src/components/app-icon.tsx b/packages/ui/src/components/app-icon.tsx
index f58b5d38c..c698f32c6 100644
--- a/packages/ui/src/components/app-icon.tsx
+++ b/packages/ui/src/components/app-icon.tsx
@@ -5,6 +5,7 @@ import type { IconName } from "./app-icons/types"
import androidStudio from "../assets/icons/app/android-studio.svg"
import antigravity from "../assets/icons/app/antigravity.svg"
import cursor from "../assets/icons/app/cursor.svg"
+import fileExplorer from "../assets/icons/app/file-explorer.svg"
import finder from "../assets/icons/app/finder.png"
import ghostty from "../assets/icons/app/ghostty.svg"
import iterm2 from "../assets/icons/app/iterm2.svg"
@@ -19,6 +20,7 @@ const icons = {
vscode,
cursor,
zed,
+ "file-explorer": fileExplorer,
finder,
terminal,
iterm2,
diff --git a/packages/ui/src/components/app-icons/types.ts b/packages/ui/src/components/app-icons/types.ts
index 81964b8da..0ad9f83d1 100644
--- a/packages/ui/src/components/app-icons/types.ts
+++ b/packages/ui/src/components/app-icons/types.ts
@@ -4,6 +4,7 @@ export const iconNames = [
"vscode",
"cursor",
"zed",
+ "file-explorer",
"finder",
"terminal",
"iterm2",