import { ChangeDetectionStrategy, Component, Input } from '@angular/core'; import { SafeHtml } from '@angular/platform-browser'; @Component({ selector: 'ngd-text-card', styleUrls: ['./text-card.component.scss'], template: `
{{ description }}
`, changeDetection: ChangeDetectionStrategy.OnPush, }) export class NgdTextCardComponent { @Input() title: string; @Input() description: string; @Input() icon: SafeHtml; }