19 lines
507 B
TypeScript
19 lines
507 B
TypeScript
|
|
import { Component } from '@angular/core';
|
||
|
|
import { environment } from '../../../environments/environment';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-logo',
|
||
|
|
standalone: true,
|
||
|
|
template: `<img [src]="logoPath" [alt]="brandName + ' logo'" class="logo-img" width="120" height="40" fetchpriority="high" />`,
|
||
|
|
styles: [`
|
||
|
|
.logo-img {
|
||
|
|
height: 40px;
|
||
|
|
width: auto;
|
||
|
|
}
|
||
|
|
`]
|
||
|
|
})
|
||
|
|
export class LogoComponent {
|
||
|
|
brandName = environment.brandName;
|
||
|
|
logoPath = `/assets/images/${environment.theme}-logo.svg`;
|
||
|
|
}
|