import {
Archive,
CheckCircle2,
Circle,
CircleDashed,
CircleDot,
Search,
} from "lucide-react";
export const getColumnIcon = (columnId: string, isFinal?: boolean) => {
switch (columnId) {
case "to-do":
return ;
case "in-progress":
return ;
case "in-review":
return ;
case "done":
return ;
case "archived":
return ;
case "planned":
return ;
default:
return isFinal ? (
) : (
);
}
};