import { Component, Input } from '@angular/core'; @Component({ selector: 'shared-card', templateUrl: './card.component.html', styleUrls: ['./card.component.scss'], }) export class CardComponent { @Input() header: string | null = null; @Input() icon: string | null = null; @Input() subHeader: string | null = null; @Input() content: string | null = null; }