summaryrefslogtreecommitdiff
path: root/lib/tech-vendors/utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tech-vendors/utils.ts')
-rw-r--r--lib/tech-vendors/utils.ts10
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/tech-vendors/utils.ts b/lib/tech-vendors/utils.ts
index 693a6929..e409975a 100644
--- a/lib/tech-vendors/utils.ts
+++ b/lib/tech-vendors/utils.ts
@@ -1,4 +1,4 @@
-import { LucideIcon, Hourglass, CheckCircle2, XCircle, CircleAlert, Clock, ShieldAlert } from "lucide-react";
+import { LucideIcon, CheckCircle2, CircleAlert, Clock, ShieldAlert, Mail, BarChart2 } from "lucide-react";
import type { TechVendor } from "@/db/schema/techVendors";
type StatusType = TechVendor["status"];
@@ -8,8 +8,12 @@ type StatusType = TechVendor["status"];
*/
export function getVendorStatusIcon(status: StatusType): LucideIcon {
switch (status) {
- case "PENDING_REVIEW":
- return Hourglass;
+ case "PENDING_INVITE":
+ return Clock;
+ case "INVITED":
+ return Mail;
+ case "QUOTE_COMPARISON":
+ return BarChart2;
case "ACTIVE":
return CheckCircle2;
case "INACTIVE":