Added new strong element to ignite template.

This commit is contained in:
Matt Mo 2021-03-10 08:56:14 -08:00
parent 653abb3aec
commit 6986197339

View File

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