diff --git a/ignite-template.js b/ignite-template.js index 2470e2e..f479a2f 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -1378,6 +1378,32 @@ class svg extends IgniteTemplate { } } +/** + * An ignite template that can be used to construct a g element. + */ +class g extends IgniteTemplate { + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("g", children); + this.tagNamespace = "http://www.w3.org/2000/svg"; + } +} + +/** + * An ignite template that can be used to construct a path element. + */ +class path extends IgniteTemplate { + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("path", children); + this.tagNamespace = "http://www.w3.org/2000/svg"; + } +} + /** * An ignite template that can be used to construct a circle element. */ @@ -2269,6 +2295,8 @@ export { thead, progress, svg, + g, + path, circle, form }; \ No newline at end of file