diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-10-20 12:50:03 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-10-20 12:50:03 -0400 |
| commit | c3f510a2944cf8436c8bccedcb77db9bd6a7f2c3 (patch) | |
| tree | a603425e25da40307b49397d20ba5bed19d7955a /src/components/ClipboardButton.tsx | |
| parent | bd2fdea07cde9aaac77047aa4a7d406c39e5a56e (diff) | |
| download | decky-lsfg-vk-c3f510a2944cf8436c8bccedcb77db9bd6a7f2c3.tar.gz decky-lsfg-vk-c3f510a2944cf8436c8bccedcb77db9bd6a7f2c3.zip | |
chore: remove unused elements previously commented out, for store release prep
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> - ); -} |
