shadcn-vue/apps/www/src/lib/registry/new-york/example/SkeletonCard.vue
2024-03-05 14:37:35 +03:30

14 lines
348 B
Vue

<script lang="ts" setup>
import { Skeleton } from '@/lib/registry/new-york/ui/skeleton'
</script>
<template>
<div class="flex flex-col space-y-3">
<Skeleton class="h-[125px] w-[250px] rounded-xl" />
<div class="space-y-2">
<Skeleton class="h-4 w-[250px]" />
<Skeleton class="h-4 w-[200px]" />
</div>
</div>
</template>