Added small element template.
This commit is contained in:
parent
a013bad19a
commit
38e8b884a7
@ -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,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user