feat(tools): add eraser tool

This commit is contained in:
syntaxbullet
2026-07-03 17:39:00 +02:00
parent 9fc0c18114
commit c13a6f5917
5 changed files with 14 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
export const availableToolIds = ["select", "crop", "brush", "pan"] as const;
export const availableToolIds = ["select", "crop", "brush", "eraser", "pan"] as const;
export type ToolId = (typeof availableToolIds)[number];