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 d2be5f5 commit a4de300Copy full SHA for a4de300
projects/observability/src/shared/components/entity-renderer/entity-renderer.component.ts
@@ -32,7 +32,7 @@ import { EntityNavigationService } from '../../services/navigation/entity/entity
32
[color]="this.iconColor"
33
class="icon"
34
*ngIf="this.showIcon && this.entityIconType"
35
- size="${IconSize.Large}"
+ [size]="this.iconSize"
36
></ht-icon>
37
<div class="name" data-sensitive-pii>{{ this.name | htDisplayString }}</div>
38
</div>
@@ -55,6 +55,9 @@ export class EntityRendererComponent implements OnChanges {
55
@Input()
56
public iconColor?: string;
57
58
+ @Input()
59
+ public iconSize: IconSize = IconSize.Large;
60
+
61
62
public showIcon: boolean = false;
63
0 commit comments