mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-09-10 23:08:43 -06:00
Added Navigation Icon Color
This commit is contained in:
@@ -53,7 +53,11 @@ function NavigationSidebar({ currentPage, onNavigate }) {
|
|||||||
transition: "width 0.15s ease"
|
transition: "width 0.15s ease"
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
{icon && <Box sx={{ mr: 1, display: "flex", alignItems: "center" }}>{icon}</Box>}
|
{icon && (
|
||||||
|
<Box sx={{ mr: 1, display: "flex", alignItems: "center", color: "#58a6ff" }}>
|
||||||
|
{icon}
|
||||||
|
</Box>
|
||||||
|
)}
|
||||||
<ListItemText primary={label} primaryTypographyProps={{ fontSize: "0.95rem" }} />
|
<ListItemText primary={label} primaryTypographyProps={{ fontSize: "0.95rem" }} />
|
||||||
</ListItemButton>
|
</ListItemButton>
|
||||||
);
|
);
|
||||||
@@ -142,4 +146,4 @@ function NavigationSidebar({ currentPage, onNavigate }) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default React.memo(NavigationSidebar);
|
export default React.memo(NavigationSidebar);
|
||||||
|
Reference in New Issue
Block a user