diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/ClipboardButton.tsx | 6 | ||||
| -rw-r--r-- | src/components/Content.tsx | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/src/components/ClipboardButton.tsx b/src/components/ClipboardButton.tsx index 7fd0a9b..cac1863 100644 --- a/src/components/ClipboardButton.tsx +++ b/src/components/ClipboardButton.tsx @@ -1,5 +1,5 @@ import { PanelSectionRow, ButtonItem } from "@decky/ui"; -import { FaClipboard } from "react-icons/fa"; +import { FaBook } from "react-icons/fa"; export function ClipboardButton() { const handleClipboardClick = () => { @@ -13,8 +13,8 @@ export function ClipboardButton() { onClick={handleClipboardClick} > <div style={{ display: "flex", alignItems: "center", gap: "8px" }}> - <FaClipboard /> - <div>Launch Option Clipboard</div> + <FaBook /> + <div>Plugin Wiki</div> </div> </ButtonItem> </PanelSectionRow> diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 5f4e139..c4934a6 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -7,6 +7,7 @@ import { InstallationButton } from "./InstallationButton"; import { ConfigurationSection } from "./ConfigurationSection"; import { UsageInstructions } from "./UsageInstructions"; import { WikiButton } from "./WikiButton"; +import { ClipboardButton } from "./ClipboardButton"; import { SmartClipboardButton } from "./SmartClipboardButton"; import { PluginUpdateChecker } from "./PluginUpdateChecker"; import { NerdStuffModal } from "./NerdStuffModal"; @@ -82,6 +83,7 @@ export function Content() { <UsageInstructions config={config} /> <WikiButton /> + <ClipboardButton /> <SmartClipboardButton /> {/* Plugin Update Checker */} |
