export enum RoutingMethod {
  specificUser = 'user',
  team = 'team',
  roundRobin = 'round-robin',
}

export const leadRoutingType = [
  { value: RoutingMethod.specificUser, label: 'Specific User' },
  { value: RoutingMethod.team, label: 'Team' },
  { value: RoutingMethod.roundRobin, label: 'Round Robin' },
];

export const MakanifySiteTheme = {
  goldLine: 'GoldLine',
};
