From 38e8b884a70b12ee0815930d825767f87c9b3c0a Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Wed, 28 Jul 2021 08:38:33 -0700 Subject: [PATCH] Added small element template. --- ignite-template.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ignite-template.js b/ignite-template.js index af14f76..75fe986 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -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. */ @@ -2630,6 +2642,7 @@ export { hr, p, span, + small, strong, i, ul,