Add image borders (#2472)

* Add image borders

* Fix prettier

* Fix spelling

* Fix spelling

* Finish feature

* Update demo

* Try and fix demo 14
This commit is contained in:
Dolan
2023-12-27 20:20:45 +00:00
committed by GitHub
parent 6c28f8bab0
commit d23f453d28
27 changed files with 571 additions and 138 deletions

View File

@ -93,6 +93,8 @@ export class BuilderElement<T extends AttributeData> extends XmlComponent {
this.root.push(new NextAttributeComponent(options.attributes));
}
// TODO: Children
for (const child of options.children ?? []) {
this.root.push(child);
}
}
}