| 1234567891011121314151617 |
- <script setup lang="ts">
- import type { HTMLAttributes } from "vue"
- import { cn } from '@/Packages/Shadcn/Lib/utils'
- interface SkeletonProps {
- class?: HTMLAttributes["class"]
- }
- const props = defineProps<SkeletonProps>()
- </script>
- <template>
- <div
- data-slot="skeleton"
- :class="cn('animate-pulse rounded-md bg-primary/10', props.class)"
- />
- </template>
|