We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5600821 commit 71613e7Copy full SHA for 71613e7
projects/observability/src/shared/components/entity-renderer/entity-renderer.component.ts
@@ -29,6 +29,7 @@ import { EntityNavigationService } from '../../services/navigation/entity/entity
29
<div class="name-with-icon fill-container">
30
<ht-icon
31
[icon]="this.entityIconType"
32
+ [color]="this.iconColor"
33
class="icon"
34
*ngIf="this.showIcon && this.entityIconType"
35
size="${IconSize.Large}"
@@ -51,6 +52,9 @@ export class EntityRendererComponent implements OnChanges {
51
52
@Input()
53
public icon?: string;
54
55
+ @Input()
56
+ public iconColor?: string;
57
+
58
59
public showIcon: boolean = false;
60
0 commit comments