summaryrefslogtreecommitdiff
path: root/src/components/ClipboardButton.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-07-15 22:37:45 -0400
committerGitHub <noreply@github.com>2025-07-15 22:37:45 -0400
commit80247f76332d2704e21361192b774f31b1520e57 (patch)
tree6dacd61f372610c8734839343ac326c61554488e /src/components/ClipboardButton.tsx
parent5fc11c1b263908e925014d86eb10649e7208b35b (diff)
parent2ad4b2a8d97b29710992e6859f3f50f6883649aa (diff)
downloaddecky-lsfg-vk-80247f76332d2704e21361192b774f31b1520e57.tar.gz
decky-lsfg-vk-80247f76332d2704e21361192b774f31b1520e57.zip
Merge pull request #25 from xXJSONDeruloXx/clipboard-workaround
Clipboard workaround
Diffstat (limited to 'src/components/ClipboardButton.tsx')
-rw-r--r--src/components/ClipboardButton.tsx22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/components/ClipboardButton.tsx b/src/components/ClipboardButton.tsx
new file mode 100644
index 0000000..3760e81
--- /dev/null
+++ b/src/components/ClipboardButton.tsx
@@ -0,0 +1,22 @@
+import { PanelSectionRow, ButtonItem } from "@decky/ui";
+import { FaExternalLinkAlt } from "react-icons/fa";
+
+export function ClipboardButton() {
+ const handleClipboardClick = () => {
+ window.open("https://github.com/xXJSONDeruloXx/decky-lossless-scaling-vk/wiki/Clipboard", "_blank");
+ };
+
+ return (
+ <PanelSectionRow>
+ <ButtonItem
+ layout="below"
+ onClick={handleClipboardClick}
+ >
+ <div style={{ display: "flex", alignItems: "center", gap: "8px" }}>
+ <FaExternalLinkAlt />
+ <div>Launch Option Clipboard</div>
+ </div>
+ </ButtonItem>
+ </PanelSectionRow>
+ );
+}