Files
wgenerator/src/app/widget-modules/components/card/card.component.ts
2025-01-02 15:01:59 +01:00

18 lines
543 B
TypeScript

import {Component, Input} from '@angular/core';
import {faTimes} from '@fortawesome/free-solid-svg-icons';
@Component({
selector: 'app-card',
templateUrl: './card.component.html',
styleUrls: ['./card.component.less'],
standalone: false,
})
export class CardComponent {
@Input() public padding = true;
@Input() public heading: string | null = null;
@Input() public subheading: string | null = null;
@Input() public closeLink: string | null = null;
@Input() public closeIcon = faTimes;
@Input() public fullscreen = false;
}