diff options
Diffstat (limited to 'src/components/ClipboardButton.tsx')
| -rw-r--r-- | src/components/ClipboardButton.tsx | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/components/ClipboardButton.tsx b/src/components/ClipboardButton.tsx deleted file mode 100644 index cac1863..0000000 --- a/src/components/ClipboardButton.tsx +++ /dev/null @@ -1,22 +0,0 @@ -import { PanelSectionRow, ButtonItem } from "@decky/ui"; -import { FaBook } 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" }}> - <FaBook /> - <div>Plugin Wiki</div> - </div> - </ButtonItem> - </PanelSectionRow> - ); -} |
