Added iframe element template.

This commit is contained in:
MattMo 2023-10-11 18:01:33 -07:00
parent 645af63c30
commit f4e314c7be

View File

@ -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
};