UNPKG

@eureca/eureca-ui

Version:

UI component library of Eureca's user and admin apps

13 lines (9 loc) 276 B
import { colors } from '../theme/colors'; const status = { active: { label: 'Ativo', color: colors.green1 }, pending: { label: 'Pendente', color: colors.color3 }, }; function decoder(type) { return status[type] || {}; } export { decoder as invitationStatusDecoder };