summaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-07-28 07:21:34 -0700
committerGitHub <noreply@github.com>2025-07-28 10:21:34 -0400
commit56eac1ac74e9f32bbf2541929e80b79cdb6cbcb1 (patch)
treece3e213466aeba1c538679e0fb5e266a4141f953 /src/index.tsx
parent2461cb5d9c2ae31afb33bfd3c3c9a8faa9a7603c (diff)
downloadDecky-Framegen-56eac1ac74e9f32bbf2541929e80b79cdb6cbcb1.tar.gz
Decky-Framegen-56eac1ac74e9f32bbf2541929e80b79cdb6cbcb1.zip
refined copy to clipboard ui feedback (#122)
* copy feedback * add opti logo and update wording * branding updates * hide check mark when installed
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");
},