import {
ChevronDown,
ChevronsUp,
ChevronUp,
CircleAlert,
Minus,
} from "lucide-react";
export function getPriorityIcon(priority: string) {
switch (priority) {
case "urgent":
return (
);
case "high":
return (
);
case "medium":
return (
);
case "low":
return (
);
case "no-priority":
return ;
default:
return ;
}
}