Files
drop/components/SkeletonCard.vue
2025-04-07 21:28:58 -04:00

16 lines
384 B
Vue

<template>
<div
class="rounded-lg w-48 h-64 bg-zinc-800/50 flex items-center justify-center transition-all duration-300 hover:bg-zinc-800 animate-pulse"
>
<p class="text-zinc-700 text-sm font-semibold font-display uppercase">
{{ props.message }}
</p>
</div>
</template>
<script setup lang="ts">
const props = defineProps<{
message?: string;
}>();
</script>