@ragrabbit/mcp

by madarco
Verified
import { ArrowDownIcon, ArrowRightIcon, ArrowUpIcon, CheckCircledIcon, CircleIcon, CrossCircledIcon, QuestionMarkCircledIcon, StopwatchIcon, } from "@radix-ui/react-icons"; export type cellConfig = { value: string; label: string; icon?: React.ElementType; className?: string }; /** * Commonly used labels and icons for cells data */ export const labels: cellConfig[] = [ { value: "bug", label: "Bug", }, { value: "feature", label: "Feature", }, { value: "documentation", label: "Documentation", }, ]; export const statuses: cellConfig[] = [ { value: "backlog", label: "Backlog", icon: QuestionMarkCircledIcon, }, { value: "todo", label: "Todo", icon: CircleIcon, }, { value: "in progress", label: "In Progress", icon: StopwatchIcon, }, { value: "done", label: "Done", icon: CheckCircledIcon, }, { value: "canceled", label: "Canceled", icon: CrossCircledIcon, }, ]; export const priorities: cellConfig[] = [ { label: "Low", value: "low", icon: ArrowDownIcon, }, { label: "Medium", value: "medium", icon: ArrowRightIcon, }, { label: "High", value: "high", icon: ArrowUpIcon, }, ];