2025-12-29 01:20:24 +00:00
|
|
|
export interface IMenuItem {
|
2024-01-24 12:18:37 +01:00
|
|
|
key: string;
|
|
|
|
|
iconName?: string;
|
|
|
|
|
action: () => void;
|
2025-12-19 13:54:37 +00:00
|
|
|
badge?: string | number;
|
|
|
|
|
badgeVariant?: 'default' | 'success' | 'warning' | 'error';
|
2025-12-29 23:33:38 +00:00
|
|
|
closeable?: boolean;
|
|
|
|
|
onClose?: () => void;
|
2024-01-24 12:18:37 +01:00
|
|
|
}
|