2023-06-21 12:02:56 +00:00
|
|
|
export const INBOX_STATUS = [
|
|
|
|
{
|
|
|
|
key: "pending",
|
|
|
|
label: "Pending",
|
|
|
|
value: -2,
|
2023-06-23 07:49:26 +00:00
|
|
|
textColor: "text-yellow-500",
|
|
|
|
bgColor: "bg-yellow-500/10",
|
|
|
|
borderColor: "border-yellow-500",
|
2023-06-21 12:02:56 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "declined",
|
|
|
|
label: "Declined",
|
|
|
|
value: -1,
|
2023-06-23 07:49:26 +00:00
|
|
|
textColor: "text-red-500",
|
|
|
|
bgColor: "bg-red-500/10",
|
|
|
|
borderColor: "border-red-500",
|
2023-06-21 12:02:56 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "snoozed",
|
|
|
|
label: "Snoozed",
|
|
|
|
value: 0,
|
2023-07-10 07:17:00 +00:00
|
|
|
textColor: "text-custom-text-200",
|
2023-06-23 07:49:26 +00:00
|
|
|
bgColor: "bg-gray-500/10",
|
|
|
|
borderColor: "border-gray-500",
|
2023-06-21 12:02:56 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "accepted",
|
|
|
|
label: "Accepted",
|
|
|
|
value: 1,
|
2023-06-23 07:49:26 +00:00
|
|
|
textColor: "text-green-500",
|
|
|
|
bgColor: "bg-green-500/10",
|
|
|
|
borderColor: "border-green-500",
|
2023-06-21 12:02:56 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
key: "duplicate",
|
|
|
|
label: "Duplicate",
|
|
|
|
value: 2,
|
2023-07-10 07:17:00 +00:00
|
|
|
textColor: "text-custom-text-200",
|
2023-06-23 07:49:26 +00:00
|
|
|
bgColor: "bg-gray-500/10",
|
|
|
|
borderColor: "border-gray-500",
|
2023-06-21 12:02:56 +00:00
|
|
|
},
|
|
|
|
];
|
2023-06-16 13:27:17 +00:00
|
|
|
|
|
|
|
export const INBOX_ISSUE_SOURCE = "in-app";
|