11 lines
341 B
HTML
11 lines
341 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">
|
|
{{ icon "arrow-down-to-line" "size-[1.1rem] text-primary" }}
|
|
<span class="font-semibold text-base-content">{{ .PullCount }}</span>
|
|
</span>
|
|
{{ end }}
|