Skip to content

Commit 2163eb2

Browse files
committed
fix: add Project and Playground icons for command bar
1 parent f7dbfe1 commit 2163eb2

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

frontend/src/component/layout/MainLayout/NavigationSidebar/IconRenderer.tsx

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { ComponentProps, FC } from 'react';
12
import EmptyIcon from '@mui/icons-material/CheckBoxOutlineBlankOutlined';
23
import type SvgIcon from '@mui/material/SvgIcon/SvgIcon';
34
import ApplicationsIcon from '@mui/icons-material/AppsOutlined';
@@ -29,10 +30,14 @@ import GitHubIcon from '@mui/icons-material/GitHub';
2930
import LibraryBooksIcon from '@mui/icons-material/LibraryBooks';
3031
import FactCheckOutlinedIcon from '@mui/icons-material/FactCheckOutlined';
3132
import PersonalDashboardIcon from '@mui/icons-material/DashboardOutlined';
32-
import type { FC } from 'react';
33+
import { ProjectIcon } from 'component/common/ProjectIcon/ProjectIcon';
34+
import PlaygroundIcon from '@mui/icons-material/AutoFixNormal';
3335

3436
// TODO: move to routes
35-
const icons: Record<string, typeof SvgIcon> = {
37+
const icons: Record<
38+
string,
39+
typeof SvgIcon | FC<ComponentProps<typeof SvgIcon>>
40+
> = {
3641
'/search': SearchIcon,
3742
'/applications': ApplicationsIcon,
3843
'/context': ContextFieldsIcon,
@@ -60,6 +65,8 @@ const icons: Record<string, typeof SvgIcon> = {
6065
'/history': EventLogIcon,
6166
'/release-templates': FactCheckOutlinedIcon,
6267
'/personal': PersonalDashboardIcon,
68+
'/projects': ProjectIcon,
69+
'/playground': PlaygroundIcon,
6370
GitHub: GitHubIcon,
6471
Documentation: LibraryBooksIcon,
6572
};

0 commit comments

Comments
 (0)