plane/apps/app/constants/cycle.ts

5 lines
220 B
TypeScript
Raw Normal View History

export const CYCLE_STATUS = [
{ label: "Started", value: "started", color: "#5e6ad2" },
{ label: "Completed", value: "completed", color: "#eb5757" },
{ label: "Draft", value: "draft", color: "#f2c94c" },
];