kgroad-frontend2/src/shared/variables/report-status.ts
Vladislav Khorev e0e2f5470d renamed folders
2024-02-14 08:04:02 +00:00

12 lines
279 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export const REPORT_STATUS: Record<number, string> = {
1: "В обработке",
2: "Одобрен",
3: "Запрещен",
};
export const REPORT_STATUS_COLORS: Record<number, string> = {
1: "rgb(255, 172, 51)",
2: "rgb(20, 186, 109)",
3: "rgb(230, 68, 82)",
};