kaneo (minimalist kanban) fork to experiment adding a tangled integration
github.com/usekaneo/kaneo
1import { CheckCircle2, Circle, CircleDot, Search } from "lucide-react";
2
3export const getColumnIcon = (columnId: string, isFinal?: boolean) => {
4 switch (columnId) {
5 case "to-do":
6 return <Circle className="w-4 h-4 text-muted-foreground" />;
7 case "in-progress":
8 return <CircleDot className="w-4 h-4 text-muted-foreground" />;
9 case "in-review":
10 return <Search className="w-4 h-4 text-muted-foreground" />;
11 case "done":
12 return <CheckCircle2 className="w-4 h-4 text-muted-foreground" />;
13 default:
14 return isFinal ? (
15 <CheckCircle2 className="w-4 h-4 text-muted-foreground" />
16 ) : (
17 <Circle className="w-4 h-4 text-muted-foreground" />
18 );
19 }
20};