This repository has been archived on 2025-04-11. You can view files and clone it, but cannot push or open issues or pull requests.
bee-frontend-ARCHIVED/src/app/shared/components/card/card.component.ts
2024-08-24 22:27:08 +00:00

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;
}