Files
image-studio/view/toolLabels.ts

19 lines
381 B
TypeScript

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";
}
}