package main // statItemComponent renders a single Gotham-styled stat item. templ statItemComponent(stat StatItem) {
if stat.Icon != "" {
@iconSVG(stat.Icon)
}
{ stat.Value }
{ stat.Label }
}