feat: Enhance selection options with icons and dividers for improved UI

This commit is contained in:
Juergen Kunz
2025-06-17 10:00:50 +00:00
parent a8f0e5659e
commit c1e8f8c2a6
5 changed files with 84 additions and 45 deletions

View File

@ -1,4 +1,5 @@
export interface ISelectionOption {
key: string;
iconName?: string;
action: () => void;
}