diff options
Diffstat (limited to 'src/view/shell/desktop')
-rw-r--r-- | src/view/shell/desktop/LeftNav.tsx | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index cf1ff8425..c1e429c73 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -40,6 +40,7 @@ import { Bell_Filled_Corner0_Rounded as BellFilled, Bell_Stroke2_Corner0_Rounded as Bell, } from '#/components/icons/Bell' +import {Bookmark, BookmarkFilled} from '#/components/icons/Bookmark' import { BulletList_Filled_Corner0_Rounded as ListFilled, BulletList_Stroke2_Corner0_Rounded as List, @@ -744,6 +745,24 @@ export function DesktopLeftNav() { label={_(msg`Lists`)} /> <NavItem + href="/saved" + icon={ + <Bookmark + style={pal.text} + aria-hidden={true} + width={NAV_ICON_WIDTH} + /> + } + iconFilled={ + <BookmarkFilled + style={pal.text} + aria-hidden={true} + width={NAV_ICON_WIDTH} + /> + } + label={_(msg`Saved`)} + /> + <NavItem href={currentAccount ? makeProfileLink(currentAccount) : '/'} icon={ <UserCircle |