From f97bc0b8b7e88f3caf5c43f6de2b6caad47e4ae9 Mon Sep 17 00:00:00 2001 From: Adrian Bonpin Date: Sun, 28 Jun 2026 18:06:13 +0800 Subject: [PATCH] feat(plugin): use DeckyVault brand SVG icon --- plugins/decky-vault/src/index.tsx | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/plugins/decky-vault/src/index.tsx b/plugins/decky-vault/src/index.tsx index 9dc1561..19587ff 100644 --- a/plugins/decky-vault/src/index.tsx +++ b/plugins/decky-vault/src/index.tsx @@ -7,7 +7,6 @@ import { import { definePlugin, } from "@decky/api" -import { FaDatabase } from "react-icons/fa" import MainPanel from "./components/main-panel" import SettingsPanel from "./components/settings-panel" import { useSettings, useSession } from "./lib/store" @@ -163,12 +162,36 @@ function Content() { ) } +// ── DeckyVault icon (flat SVG) ──────────────────────────────── +function DeckyVaultIcon() { + return ( + + + + + + + ) +} + export default definePlugin(() => { return { name: "DeckyVault", titleView:
DeckyVault
, content: , - icon: , + icon: , alwaysRender: false, onDismount() { console.log("[DeckyVault] Plugin unloading")