import { BacklogStateIcon } from "./backlog-state-icon"; import { CompletedStateIcon } from "./completed-state-icon"; import { StartedStateIcon } from "./started-state-icon"; export const getStateGroupIcon = ( stateGroup: "backlog" | "unstarted" | "started" | "completed" | "cancelled", width = "20", height = "20", color?: string ) => { switch (stateGroup) { case "backlog": return ; case "unstarted": return ; case "started": return ; case "completed": return ; case "cancelled": return ; default: return <>; } };