From 3f7dd8ce0a0f11f894332a3b4351ecd7a9abd141 Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Tue, 15 Jul 2025 21:45:20 -0400 Subject: add clipboard web launch button --- src/components/ClipboardButton.tsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/components/ClipboardButton.tsx (limited to 'src/components/ClipboardButton.tsx') 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 ( + + +
+ +
Launch Option Clipboard
+
+
+
+ ); +} -- cgit v1.2.3