generated from flo/template-frontend
14 lines
371 B
TypeScript
14 lines
371 B
TypeScript
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;
|
|
}
|