Added small element template.

This commit is contained in:
Matt Mo 2021-07-28 08:38:33 -07:00
parent a013bad19a
commit 38e8b884a7

View File

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