feat: add to switch between Logo and Wordmark

This commit is contained in:
ridemountainpig
2024-01-11 11:45:23 +08:00
parent 0caef2f8b7
commit 3b4730e88f
5 changed files with 60 additions and 15 deletions
+6
View File
@@ -10,5 +10,11 @@ export interface iSVG {
dark: string;
light: string;
};
wordmark?:
| string // for backwards compat of when theme support was not added
| {
dark: string;
light: string;
};
url: string;
}