/**
* Copyright (c) 2023-present Plane Software, Inc. and contributors
* SPDX-License-Identifier: AGPL-3.0-only
* See the LICENSE file for details.
*/
import {
AnalyticsIcon,
ArchiveIcon,
CycleIcon,
DraftIcon,
HomeIcon,
InboxIcon,
MultipleStickyIcon,
ProjectIcon,
ViewsIcon,
YourWorkIcon,
} from "@plane/propel/icons";
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 ;
case "stickies":
return ;
}
};