diff --git a/ignite-template.js b/ignite-template.js index 8d6fea7..7cc4b47 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -2038,6 +2038,18 @@ class footer extends IgniteTemplate { } } +/** + * An ignite template that can be used to construct a iframe element. + */ +class iframe extends IgniteTemplate { + /** + * @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template. + */ + constructor(...children) { + super("iframe", children); + } +} + /** * An ignite template that can be used to construct a progress element. */ @@ -3595,5 +3607,6 @@ export { line, form, header, - footer + footer, + iframe }; \ No newline at end of file