From 012131c267c0979a396d76c931394f9743ece535 Mon Sep 17 00:00:00 2001 From: Einliterflasche Date: Fri, 14 Mar 2025 12:38:04 +0100 Subject: [PATCH] gui: add an icon that links to the documentation --- .../components/navigation/NavigationFooter.tsx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src-gui/src/renderer/components/navigation/NavigationFooter.tsx b/src-gui/src/renderer/components/navigation/NavigationFooter.tsx index 328a505e..8e9732ab 100644 --- a/src-gui/src/renderer/components/navigation/NavigationFooter.tsx +++ b/src-gui/src/renderer/components/navigation/NavigationFooter.tsx @@ -1,15 +1,13 @@ import { Box, makeStyles, Tooltip } from "@material-ui/core"; import GitHubIcon from "@material-ui/icons/GitHub"; -import RedditIcon from "@material-ui/icons/Reddit"; import DaemonStatusAlert from "../alert/DaemonStatusAlert"; import FundsLeftInWalletAlert from "../alert/FundsLeftInWalletAlert"; import MoneroWalletRpcUpdatingAlert from "../alert/MoneroWalletRpcUpdatingAlert"; import UnfinishedSwapsAlert from "../alert/UnfinishedSwapsAlert"; -import DiscordIcon from "../icons/DiscordIcon"; import LinkIconButton from "../icons/LinkIconButton"; -import { DISCORD_URL } from "../pages/help/ContactInfoBox"; import BackgroundRefundAlert from "../alert/BackgroundRefundAlert"; import MatrixIcon from "../icons/MatrixIcon"; +import { BookRounded } from "@material-ui/icons"; const useStyles = makeStyles((theme) => ({ outer: { @@ -49,6 +47,13 @@ export default function NavigationFooter() { + + + + + + + );