component MetricGrid { props { label = "Platform metrics" metrics = [] compact = false columns = 4 class = "" } view {
{#each metrics as metric}
{metric.value} {metric.label} {#if metric.description}

{metric.description}

{/if}
{:empty}

No metrics available.

{/each}
} }