11import React , { PropsWithChildren } from 'react' ;
22import { makeStyles } from '@material-ui/core' ;
3- import HomeIcon from '@material-ui /icons/Home ' ;
3+ import WindowRoundedIcon from '@mui /icons-material/WindowRounded ' ;
44import ExtensionIcon from '@material-ui/icons/Extension' ;
55import MapIcon from '@material-ui/icons/MyLocation' ;
66import LibraryBooks from '@material-ui/icons/LibraryBooks' ;
7- import CreateComponentIcon from '@material-ui /icons/AddCircleOutline ' ;
7+ import BackupRoundedIcon from '@mui /icons-material/BackupRounded ' ;
88import LogoFull from './LogoFull' ;
99import LogoIcon from './LogoIcon' ;
1010import {
@@ -24,8 +24,9 @@ import {
2424 useSidebarOpenState ,
2525 Link ,
2626} from '@backstage/core-components' ;
27- import MenuIcon from '@material-ui /icons/Menu ' ;
27+ import MenuOpenRoundedIcon from '@mui /icons-material/MenuOpenRounded ' ;
2828import SearchIcon from '@material-ui/icons/Search' ;
29+ import AppRegistrationRoundedIcon from '@mui/icons-material/AppRegistrationRounded' ;
2930
3031const useSidebarLogoStyles = makeStyles ( {
3132 root : {
@@ -63,12 +64,18 @@ export const Root = ({ children }: PropsWithChildren<{}>) => (
6364 < SidebarSearchModal />
6465 </ SidebarGroup >
6566 < SidebarDivider />
66- < SidebarGroup label = "Menu" icon = { < MenuIcon /> } >
67+ < SidebarGroup label = "Menu" icon = { < MenuOpenRoundedIcon /> } >
6768 { /* Global nav, not org-specific */ }
68- < SidebarItem icon = { HomeIcon } to = "catalog" text = "Home" />
69+ < SidebarItem icon = { WindowRoundedIcon } to = "catalog" text = "Home" />
6970 < SidebarItem icon = { ExtensionIcon } to = "api-docs" text = "APIs" />
7071 < SidebarItem icon = { LibraryBooks } to = "docs" text = "Documents" />
71- < SidebarItem icon = { CreateComponentIcon } to = "create" text = "Create...." />
72+ < SidebarItem icon = { BackupRoundedIcon } to = "create" text = "Deploy" />
73+ < SidebarItem
74+ icon = { AppRegistrationRoundedIcon }
75+ to = "catalog-import"
76+ text = "Register"
77+ />
78+
7279 { /* End global nav */ }
7380 < SidebarDivider />
7481 < SidebarScrollWrapper >
0 commit comments