Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 1x 9x 9x 9x 9x | import {Component, Input} from '@angular/core';
import {faAngleRight, faClock, faLocationPin, faUser} from "@fortawesome/free-solid-svg-icons";
@Component({
selector: 'app-gym-card',
templateUrl: './gym-card.component.html',
styleUrls: ['./gym-card.component.css']
})
export class GymCardComponent {
@Input() name: string | undefined;
@Input() description: string | undefined;
protected readonly faUser = faUser;
protected readonly faClock = faClock;
protected readonly faAngleRight = faAngleRight;
protected readonly faLocationPin = faLocationPin;
}
|