ViewIcons: Add context menu icons

This commit is contained in:
V 2023-05-13 23:49:47 +02:00
parent c062f9bdeb
commit f13f9e80a9
No known key found for this signature in database
GPG key ID: A1DC0CFB5615D905
2 changed files with 7 additions and 1 deletions

View file

@ -37,9 +37,10 @@ export interface Menu {
id: string;
label: string;
action?(e: MouseEvent): void;
icon?: ComponentType<any>;
color?: string;
render?: ComponentType;
render?: ComponentType<any>;
onChildrenScroll?: Function;
childRowHeight?: number;
listClassName?: string;