13 lines
584 B
Plaintext
13 lines
584 B
Plaintext
package ui
|
|
|
|
templ LoadingIndicator(text string) {
|
|
<div class="flex flex-col items-center justify-center gap-4 py-12">
|
|
<div class="flex gap-1.5">
|
|
<span class="h-2 w-2 rounded-full bg-(--text-faint) animate-bounce" style="animation-delay: 0ms;"></span>
|
|
<span class="h-2 w-2 rounded-full bg-(--text-faint) animate-bounce" style="animation-delay: 150ms;"></span>
|
|
<span class="h-2 w-2 rounded-full bg-(--text-faint) animate-bounce" style="animation-delay: 300ms;"></span>
|
|
</div>
|
|
<span class="text-xs uppercase tracking-widest text-(--text-faint)">{ text }</span>
|
|
</div>
|
|
}
|