Commit 87ab7a9e authored by isstuev's avatar isstuev

fix arrow

parent 3498e1e8
...@@ -76,7 +76,12 @@ const NavLinkGroupDesktop = ({ text, subItems, icon, isCollapsed, isActive }: Pr ...@@ -76,7 +76,12 @@ const NavLinkGroupDesktop = ({ text, subItems, icon, isCollapsed, isActive }: Pr
{ text } { text }
</Text> </Text>
</HStack> </HStack>
{ isExpanded && <Icon as={ chevronIcon } transform="rotate(180deg)" boxSize={ 6 }/> } <Icon
as={ chevronIcon }
transform="rotate(180deg)"
boxSize={ 6 }
display={{ lg: isExpanded ? 'block' : 'none', xl: isCollapsed ? 'none' : 'block' }}
/>
</Flex> </Flex>
</Box> </Box>
</PopoverTrigger> </PopoverTrigger>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment