Files
marketplaces/src/app/components/logo/logo.component.ts

19 lines
507 B
TypeScript
Raw Normal View History

2026-01-18 18:57:06 +04:00
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`;
}