ui enhancements and song state

This commit is contained in:
2020-04-25 22:29:34 +02:00
committed by smuddy
parent 01d13ccea9
commit 4c5a8c972c
43 changed files with 297 additions and 141 deletions

View File

@@ -1,18 +1,15 @@
import {Component, Input, OnInit} from '@angular/core';
import {Component, Input} from '@angular/core';
import {faTimes} from '@fortawesome/free-solid-svg-icons/faTimes';
@Component({
selector: 'app-card',
templateUrl: './card.component.html',
styleUrls: ['./card.component.less']
})
export class CardComponent implements OnInit {
export class CardComponent {
@Input() padding = true;
@Input() heading: string;
@Input() closeLink: string;
constructor() {
}
ngOnInit() {
}
public faClose = faTimes;
}