summaryrefslogtreecommitdiff
path: root/src/components/WikiButton.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-10-21 12:06:57 -0400
committerGitHub <noreply@github.com>2025-10-21 12:06:57 -0400
commit4f7557a84be323392e00f51194e7b70b35512277 (patch)
tree12ff6e936470801b18f2ab39836b941be794cb05 /src/components/WikiButton.tsx
parentbd2fdea07cde9aaac77047aa4a7d406c39e5a56e (diff)
parentec37b86c5d4a6371804e71e7863df6a71c756db3 (diff)
downloaddecky-lsfg-vk-4f7557a84be323392e00f51194e7b70b35512277.tar.gz
decky-lsfg-vk-4f7557a84be323392e00f51194e7b70b35512277.zip
Merge pull request #189 from xXJSONDeruloXx/store-cleanup-2
Store cleanup 2
Diffstat (limited to 'src/components/WikiButton.tsx')
-rw-r--r--src/components/WikiButton.tsx22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/components/WikiButton.tsx b/src/components/WikiButton.tsx
deleted file mode 100644
index 065fb8e..0000000
--- a/src/components/WikiButton.tsx
+++ /dev/null
@@ -1,22 +0,0 @@
-import { PanelSectionRow, ButtonItem } from "@decky/ui";
-import { FaBook } from "react-icons/fa";
-
-export function WikiButton() {
- const handleWikiClick = () => {
- window.open("https://github.com/PancakeTAS/lsfg-vk/wiki", "_blank");
- };
-
- return (
- <PanelSectionRow>
- <ButtonItem
- layout="below"
- onClick={handleWikiClick}
- >
- <div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
- <FaBook />
- <div>LSFG-VK Wiki</div>
- </div>
- </ButtonItem>
- </PanelSectionRow>
- );
-}