* Added the ability to define custom icons for the system tray. * Add placeholder icon if icon is not defined. * Update themes
7 lines
107 B
TypeScript
7 lines
107 B
TypeScript
export type SystrayIconMap = {
|
|
[key: string]: {
|
|
icon: string;
|
|
color: string;
|
|
};
|
|
};
|