Skip to content

Commit

Permalink
Replace FileOpenIcon with FolderOpenIcon in PanelTabs.
Browse files Browse the repository at this point in the history
  • Loading branch information
junhaoliao committed Sep 18, 2024
1 parent 1474245 commit ef55b61
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
Tabs,
} from "@mui/joy";

import FileOpenIcon from "@mui/icons-material/FileOpen";
import FolderOpenIcon from "@mui/icons-material/FolderOpen";
import InfoIcon from "@mui/icons-material/Info";
import SettingsIcon from "@mui/icons-material/Settings";

Expand Down Expand Up @@ -76,7 +76,7 @@ const PanelTabs = forwardRef<HTMLDivElement>((_, tabListRef) => {
size={"lg"}
>
{[
{tabName: TAB_NAME.OPEN_FILE, icon: <FileOpenIcon/>},
{tabName: TAB_NAME.OPEN_FILE, icon: <FolderOpenIcon/>},
{tabName: TAB_NAME.FILE_INFO, icon: <InfoIcon/>},
].map(({tabName, icon}) => (
<Tab
Expand Down

0 comments on commit ef55b61

Please sign in to comment.