mirror of
https://github.com/unraid/api.git
synced 2026-01-01 14:10:10 -06:00
13 lines
314 B
Vue
13 lines
314 B
Vue
<script setup lang="ts">
|
|
import { cn } from '~/components/shadcn/utils';
|
|
|
|
const props = withDefaults(defineProps<{ class?: string }>(), { class: '' });
|
|
</script>
|
|
<template>
|
|
<div
|
|
:class="cn('h-5 animate-pulse bg-gray-300 w-full', props.class)"
|
|
role="progressbar"
|
|
aria-label="Loading"
|
|
/>
|
|
</template>
|