import type { ToolId } from "@editor/tools"; export function labelForTool(tool: ToolId): string { switch (tool) { case "crop": return "Crop"; case "pan": return "Pan"; case "select": return "Select"; } }