style: generally improve appearance of context menu

This commit is contained in:
SauceyRed 2025-07-30 16:28:59 +02:00
parent 78d43ca0c8
commit 033522c372
Signed by: sauceyred
GPG key ID: 2BF92EB6D8A5CCA7
2 changed files with 19 additions and 4 deletions

View file

@ -101,6 +101,7 @@ export interface ModalProps {
export interface ContextMenuItem {
name: string,
icon?: string,
callback: (...args: any[]) => any;
}