[READ-ONLY] a fast, modern browser for the npm registry
at main 15 lines 396 B view raw
1<script setup lang="ts"> 2defineProps<{ 3 /** Text to display next to the spinner */ 4 text?: string 5}>() 6</script> 7 8<template> 9 <div aria-busy="true" class="flex items-center gap-3 text-fg-muted font-mono text-sm py-8"> 10 <span 11 class="w-4 h-4 border-2 border-fg-subtle border-t-fg rounded-full motion-safe:animate-spin" 12 /> 13 {{ text ?? $t('common.loading') }} 14 </div> 15</template>