Хотелось бы передать в динамический компонент "tags" параметр "colors[]", затем отрендерить, и полученный результат (сформированный html-шаблон) вернуть в переменной "html".
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'tag'
})
export class TagPipe implements PipeTransform {
constructor(private sanitized: DomSanitizer) {}
transform(value?: string): any {
const html = `<tags [colors]="[${value}]"></tags>`;
return html;
}