Files
at-container-registry/pkg/appview/templates/components/pull-count.html
T

11 lines
356 B
HTML

{{ define "pull-count" }}
{{/*
Pull count component - displays download icon with count
Required: .PullCount (int)
*/}}
<span class="flex items-center gap-2 text-base-content/60">
<i data-lucide="arrow-down-to-line" class="size-[1.1rem] text-primary"></i>
<span class="font-semibold text-base-content">{{ .PullCount }}</span>
</span>
{{ end }}