Added sup template.

This commit is contained in:
MattMo 2023-05-29 18:19:59 -07:00
parent f97511fe6e
commit 557584aadd

View File

@ -1743,6 +1743,18 @@ class span extends IgniteTemplate {
}
}
/**
* An ignite template that can be used to construct a sup element.
*/
class sup extends IgniteTemplate {
/**
* @param {...String|Number|IgniteProperty|IgniteTemplate} children A series of children to be added to this template.
*/
constructor(...children) {
super("sup", children);
}
}
/**
* An ignite template that can be used to construct a small element.
*/
@ -3360,6 +3372,7 @@ export {
hr,
p,
span,
sup,
small,
strong,
i,