Is it possible to generate an HTML tag dynamically within a component's template?
For example:
template:`<{{custom_tag}} [info]="info"></{{custom_tag}}>`
...
this.custom_tag="example";
this.info={};
The resulting HTML would look like this:
<example info="..."></example>