import { Component } from '@angular/core'; import { environment } from '../../../environments/environment'; @Component({ selector: 'app-logo', standalone: true, template: ``, styles: [` .logo-img { height: 40px; width: auto; } `] }) export class LogoComponent { brandName = environment.brandName; logoPath = `/assets/images/${environment.theme}-logo.svg`; }