feat: add support for regular polygon shape with customizable sides

This commit is contained in:
Ayesha Imran 2025-04-28 12:45:54 +05:00
parent 2a0d15799c
commit c8d38e87b0
24 changed files with 329 additions and 67 deletions

View file

@ -432,12 +432,12 @@ export const TOOL_TYPE = {
freedraw: "freedraw",
text: "text",
image: "image",
regularPolygon: "regularPolygon",
eraser: "eraser",
hand: "hand",
laser: "laser",
frame: "frame",
magicframe: "magicframe",
embeddable: "embeddable",
laser: "laser",
} as const;
export const EDITOR_LS_KEYS = {
@ -473,4 +473,4 @@ export enum UserIdleState {
ACTIVE = "active",
AWAY = "away",
IDLE = "idle",
}
}