import { Component, Input } from '@angular/core'; @Component({ selector: 'app-proficiency-details', templateUrl: './proficiency-details.component.html', styleUrl: './proficiency-details.component.scss', }) export class ProficiencyDetailsComponent { @Input() proficiency: number = 0; }