shadcn-vue/apps/www/src/lib/registry/new-york/example/SkeletonDemo.vue

14 lines
344 B
Vue

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