Files
domain-watchdog/assets/utils/functions/rolesToColor.tsx
2024-12-23 15:14:23 +01:00

6 lines
362 B
TypeScript

export const rolesToColor = (roles: string[]) => roles.includes('registrant') ? 'green' :
roles.includes('registrar') ? 'purple' :
roles.includes('administrative') ? 'blue' :
roles.includes('technical') ? 'orange' :
roles.includes('sponsor') ? 'magenta' :
roles.includes('billing') ? 'cyan' : 'default'