summaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/index.tsx b/src/index.tsx
index b85c6b1..5cf59e4 100644
--- a/src/index.tsx
+++ b/src/index.tsx
@@ -1,8 +1,8 @@
import { definePlugin } from "@decky/api";
-import { RiAiGenerate } from "react-icons/ri";
+import { MdOutlineAutoAwesomeMotion } from "react-icons/md";
import { useState, useEffect } from "react";
import { FGModInstallerSection } from "./components/FGModInstallerSection";
-import { InstalledGamesSection } from "./components/InstalledGamesSection";
+// import { InstalledGamesSection } from "./components/InstalledGamesSection";
import { DocumentationButton } from "./components/DocumentationButton";
import { checkFGModPath } from "./api";
import { safeAsyncOperation } from "./utils";
@@ -43,7 +43,7 @@ export default definePlugin(() => ({
titleView: <div>Decky Framegen</div>,
alwaysRender: true,
content: <MainContent />,
- icon: <RiAiGenerate />,
+ icon: <MdOutlineAutoAwesomeMotion />,
onDismount() {
console.log("Framegen Plugin unmounted");
},