Skip to content

Commit 71613e7

Browse files
feat: entity icon color (#1365)
1 parent 5600821 commit 71613e7

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

projects/observability/src/shared/components/entity-renderer/entity-renderer.component.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import { EntityNavigationService } from '../../services/navigation/entity/entity
2929
<div class="name-with-icon fill-container">
3030
<ht-icon
3131
[icon]="this.entityIconType"
32+
[color]="this.iconColor"
3233
class="icon"
3334
*ngIf="this.showIcon && this.entityIconType"
3435
size="${IconSize.Large}"
@@ -51,6 +52,9 @@ export class EntityRendererComponent implements OnChanges {
5152
@Input()
5253
public icon?: string;
5354

55+
@Input()
56+
public iconColor?: string;
57+
5458
@Input()
5559
public showIcon: boolean = false;
5660

0 commit comments

Comments
 (0)