kaneo (minimalist kanban) fork to experiment adding a tangled integration
github.com/usekaneo/kaneo
1import { CheckCircle2, Clock } from "lucide-react";
2
3export function getStatusIcon(status: "active" | "pending") {
4 switch (status) {
5 case "active":
6 return <CheckCircle2 className="h-4 w-4 text-success-foreground" />;
7 case "pending":
8 return <Clock className="h-4 w-4 text-warning-foreground" />;
9 }
10}
11
12export function getStatusText(status: "active" | "pending") {
13 switch (status) {
14 case "active":
15 return "Active";
16 case "pending":
17 return "Pending";
18 }
19}