@campxdev/react-blueprint 0.1.47 → 0.1.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -57,7 +57,7 @@ export const Sidebar = ({
|
|
|
57
57
|
<StyledListItemIcon collapsed={collapsed}>
|
|
58
58
|
{Icon ? Icon : <Icons.HomeIcon />}
|
|
59
59
|
</StyledListItemIcon>
|
|
60
|
-
{!collapsed && <Typography variant="
|
|
60
|
+
{!collapsed && <Typography variant="subtitle2">{name}</Typography>}
|
|
61
61
|
</StyledListItemButton>
|
|
62
62
|
</StyledLinkButton>
|
|
63
63
|
</StyledListItem>
|
|
@@ -67,7 +67,7 @@ export const Sidebar = ({
|
|
|
67
67
|
return (
|
|
68
68
|
<StyledSidebarContainer direction="column" spacing="12px">
|
|
69
69
|
<StyledLogoArea collapsed={collapsed}>
|
|
70
|
-
{collapsed ? <CampxIcon /> : <CampxFullLogoIcon />}
|
|
70
|
+
{collapsed ? <CampxIcon size={32} /> : <CampxFullLogoIcon />}
|
|
71
71
|
</StyledLogoArea>
|
|
72
72
|
<StyledMenuBar>
|
|
73
73
|
{menu &&
|
|
@@ -78,7 +78,7 @@ export const Sidebar = ({
|
|
|
78
78
|
</StyledMenuBar>
|
|
79
79
|
<StyledCollapsibleSection>
|
|
80
80
|
<IconButton onClick={toggleSidebar}>
|
|
81
|
-
{collapsed ? <RightIcon /> : <LeftIcon />}
|
|
81
|
+
{collapsed ? <RightIcon size={32} /> : <LeftIcon size={32} />}
|
|
82
82
|
</IconButton>
|
|
83
83
|
</StyledCollapsibleSection>
|
|
84
84
|
</StyledSidebarContainer>
|