import { Component,Input } from '@angular/core'; import { NgSwitch } from '@angular/common'; @Component({ selector: 'file-icon', templateUrl: './file-icon.component.html' , styles: [` .fileIconImage { width: 25px; height: 25px; line-height: 30px; } `], }) export class FileIconComponent { @Input() extension: string; }