import { BarChart2, Briefcase, Home, Inbox, Layers, PenSquare } from "lucide-react"; import { ArchiveIcon, ContrastIcon, UserActivityIcon } from "@plane/ui"; import { cn } from "@plane/utils"; export const getSidebarNavigationItemIcon = (key: string, className: string = "") => { switch (key) { case "home": return ; case "inbox": return ; case "projects": return ; case "views": return ; case "active_cycles": return ; case "analytics": return ; case "your_work": return ; case "drafts": return ; case "archives": return ; } };