From 6986197339128304f639dea8a793116370c894a1 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Wed, 10 Mar 2021 08:56:14 -0800 Subject: [PATCH] Added new strong element to ignite template. --- ignite-template.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/ignite-template.js b/ignite-template.js index ec31276..99097e5 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -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. */ @@ -2409,6 +2421,7 @@ export { hr, p, span, + strong, i, ul, li,