import { Component, OnInit, Input } from '@angular/core'; @Component({ selector: 'app-brand', templateUrl: './brand.component.html' }) export class BrandComponent implements OnInit { @Input() logoShort: string; @Input() logoLong: string; @Input() logoImage: string; constructor() { } ngOnInit() { } }