This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

feat: add navbar toggle to minimal profile header

+14 -10
+14 -10
src/webapp/features/profile/components/profileHeader/MinimalProfileHeader.tsx
··· 1 + import NavbarToggle from '@/components/navigation/NavbarToggle'; 1 2 import { 2 3 Group, 3 4 Avatar, ··· 37 38 </Stack> 38 39 </Group> 39 40 40 - <ActionIcon 41 - component={Link} 42 - href={`/search/cards?handle=${props.handle}`} 43 - variant="light" 44 - color="gray" 45 - size={'lg'} 46 - radius={'xl'} 47 - > 48 - <IoSearch /> 49 - </ActionIcon> 41 + <Group gap={'xs'}> 42 + <ActionIcon 43 + component={Link} 44 + href={`/search/cards?handle=${props.handle}`} 45 + variant="light" 46 + color="gray" 47 + size={'lg'} 48 + radius={'xl'} 49 + > 50 + <IoSearch /> 51 + </ActionIcon> 52 + <NavbarToggle /> 53 + </Group> 50 54 </Group> 51 55 </Container> 52 56 );