forked from github/plane
651b252c23
* chore: svg icons added in plane/ui package * chore: swap priority and state icon with plane/ui icons * chore: replace core folder icons with lucide and plane ui icons * style: priority icon size * chore: replace icons with lucide and plane/ui icons * chore: replace cycle folder icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * chore: replace existing icons with lucide and plane/ui icons * fix: build error * fix: build error * fix: build error
40 lines
577 B
TypeScript
40 lines
577 B
TypeScript
import { GanttChart, Kanban, List } from "lucide-react";
|
|
|
|
export const CYCLE_TAB_LIST = [
|
|
{
|
|
key: "all",
|
|
name: "All",
|
|
},
|
|
{
|
|
key: "active",
|
|
name: "Active",
|
|
},
|
|
{
|
|
key: "upcoming",
|
|
name: "Upcoming",
|
|
},
|
|
{
|
|
key: "completed",
|
|
name: "Completed",
|
|
},
|
|
{
|
|
key: "draft",
|
|
name: "Drafts",
|
|
},
|
|
];
|
|
|
|
export const CYCLE_VIEWS = [
|
|
{
|
|
key: "list",
|
|
icon: <List className="h-4 w-4" />,
|
|
},
|
|
{
|
|
key: "board",
|
|
icon: <Kanban className="h-4 w-4" />,
|
|
},
|
|
{
|
|
key: "gantt",
|
|
icon: <GanttChart className="h-4 w-4" />,
|
|
},
|
|
];
|