summaryrefslogtreecommitdiff
path: root/src/components/WikiButton.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/WikiButton.tsx')
-rw-r--r--src/components/WikiButton.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/WikiButton.tsx b/src/components/WikiButton.tsx
index 80ff1d9..065fb8e 100644
--- a/src/components/WikiButton.tsx
+++ b/src/components/WikiButton.tsx
@@ -1,5 +1,5 @@
import { PanelSectionRow, ButtonItem } from "@decky/ui";
-import { FaExternalLinkAlt } from "react-icons/fa";
+import { FaBook } from "react-icons/fa";
export function WikiButton() {
const handleWikiClick = () => {
@@ -13,7 +13,7 @@ export function WikiButton() {
onClick={handleWikiClick}
>
<div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
- <FaExternalLinkAlt />
+ <FaBook />
<div>LSFG-VK Wiki</div>
</div>
</ButtonItem>