import type { ToolId } from "@editor/tools"; export function labelForTool(tool: ToolId): string { return tool === "pan" ? "Pan" : "Select"; }