Files
Starlight_Lancher/apps/telemetry-dashboard/components/ui/Skeleton.vue

10 lines
235 B
Vue

<script setup lang="ts">
import { cn } from '~/lib/utils'
const props = defineProps<{ class?: string }>()
</script>
<template>
<div :class="cn('animate-pulse rounded-md bg-muted', props.class)" aria-hidden="true"></div>
</template>