kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 9a620ba2f31238f03cd28f1da5ef3838d67e4e8a 20 lines 719 B view raw
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};