feat(layers): add layer management panel

This commit is contained in:
syntaxbullet
2026-07-03 17:26:50 +02:00
parent ba3f253ee5
commit fedeaffa57
27 changed files with 1525 additions and 156 deletions

View File

@@ -7,5 +7,7 @@ export type Artboard = {
name: string;
bounds: Rect;
backgroundColor: string;
visible: boolean;
locked: boolean;
layers: Layer[];
};