Files
image-studio/view/toolLabels.ts
2026-07-03 11:27:48 +02:00

6 lines
145 B
TypeScript

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