import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-logo', template: '', styles:['img {width:100%;align-self:center;}'] }) export class LogoComponent implements OnInit { constructor() { } ngOnInit() { } }