diff options
Diffstat (limited to 'src/view/shell/bottom-bar/BottomBarWeb.tsx')
-rw-r--r-- | src/view/shell/bottom-bar/BottomBarWeb.tsx | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/src/view/shell/bottom-bar/BottomBarWeb.tsx b/src/view/shell/bottom-bar/BottomBarWeb.tsx index 3a0b92336..f2d2f26f9 100644 --- a/src/view/shell/bottom-bar/BottomBarWeb.tsx +++ b/src/view/shell/bottom-bar/BottomBarWeb.tsx @@ -27,6 +27,10 @@ import { Bell_Stroke2_Corner0_Rounded as Bell, } from '#/components/icons/Bell' import { + Hashtag_Filled_Corner0_Rounded as HashtagFilled, + Hashtag_Stroke2_Corner0_Rounded as Hashtag, +} from '#/components/icons/Hashtag' +import { HomeOpen_Filled_Corner0_Rounded as HomeFilled, HomeOpen_Stoke2_Corner0_Rounded as Home, } from '#/components/icons/HomeOpen' @@ -101,7 +105,7 @@ export function BottomBarWeb() { {hasSession && ( <> - {gate('dms') && ( + {gate('dms') ? ( <NavItem routeName="Messages" href="/messages"> {({isActive}) => { const Icon = isActive ? MessageFilled : Message @@ -113,6 +117,18 @@ export function BottomBarWeb() { ) }} </NavItem> + ) : ( + <NavItem routeName="Feeds" href="/feeds"> + {({isActive}) => { + const Icon = isActive ? HashtagFilled : Hashtag + return ( + <Icon + width={iconWidth + 1} + style={[styles.ctrlIcon, pal.text, styles.feedsIcon]} + /> + ) + }} + </NavItem> )} <NavItem routeName="Notifications" href="/notifications"> {({isActive}) => { |