File size: 906 Bytes
9853396
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { IconCash, IconShield, IconUsersGroup, IconUserShield } from '@tabler/icons-react';

// export const callTypes = new Map<UserStatus, string>([
//   ['active', 'bg-teal-100/30 text-teal-900 dark:text-teal-200 border-teal-200'],
//   ['inactive', 'bg-neutral-300/40 border-neutral-300'],
//   ['invited', 'bg-sky-200/40 text-sky-900 dark:text-sky-100 border-sky-300'],
//   [
//     'suspended',
//     'bg-destructive/10 dark:bg-destructive/50 text-destructive dark:text-primary border-destructive/10',
//   ],
// ])

export const userTypes = [
  {
    label: 'Superadmin',
    value: 'superadmin',
    icon: IconShield,
  },
  {
    label: 'Admin',
    value: 'admin',
    icon: IconUserShield,
  },
  {
    label: 'Manager',
    value: 'manager',
    icon: IconUsersGroup,
  },
  {
    label: 'Cashier',
    value: 'cashier',
    icon: IconCash,
  },
] as const;