menu-item.interface.ts 139 Bytes
Newer Older
1 2 3 4 5 6 7 8
export interface MenuItem {
  id: string;
  icon: string;
  label: string;
  description: string;
  colorClass: string;
  route: string;
}