Files
image-studio/view/toolLabels.ts
2026-07-03 17:37:43 +02:00

15 lines
279 B
TypeScript

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