export interface OrderType { 
    identifier: 'takeaway' | 'delivery'; 
    label: string;
    selected: boolean;
    icon: string;
};