initial
This commit is contained in:
9
ts_web/elements/interfaces/tab.ts
Normal file
9
ts_web/elements/interfaces/tab.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export interface IMenuItem {
|
||||
key: string;
|
||||
iconName?: string;
|
||||
action: () => void;
|
||||
badge?: string | number;
|
||||
badgeVariant?: 'default' | 'success' | 'warning' | 'error';
|
||||
closeable?: boolean;
|
||||
onClose?: () => void;
|
||||
}
|
||||
Reference in New Issue
Block a user