mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-23 09:03:44 +03:00
5 lines
259 B
HTML
5 lines
259 B
HTML
<a *ngIf="logo.url" href="{{logo.url}}">
|
|
<img *ngIf="logo.imgUrl" [attr.src]="logo.imgUrl" [ngStyle]="{'background-color': logo.bgColor}">
|
|
</a>
|
|
<img *ngIf="logo.imgUrl && !logo.url" [attr.src]="logo.imgUrl" [ngStyle]="{'background-color': logo.bgColor}">
|