mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-18 02:05:36 +00:00
6 lines
362 B
TypeScript
6 lines
362 B
TypeScript
export const rolesToColor = (roles: string[]) => roles.includes('registrant') ? 'green' :
|
|
roles.includes('technical') ? 'orange' :
|
|
roles.includes('administrative') ? 'blue' :
|
|
roles.includes('registrar') ? 'purple' :
|
|
roles.includes('sponsor') ? 'magenta' :
|
|
roles.includes('billing') ? 'cyan' : 'default' |