import type { ToolId } from "@editor/tools"; export function labelForTool(tool: ToolId): string { switch (tool) { case "brush": return "Brush"; case "chromaKey": return "Chroma key"; case "magicWand": return "Magic wand"; case "eraser": return "Eraser"; case "pan": return "Pan"; case "select": return "Select"; } }