Files
Caramel-CRM/resources/js/components/ui/skeleton/Skeleton.vue
T

18 lines
349 B
Vue
Raw Normal View History

2025-10-20 08:57:51 +02:00
<script setup lang="ts">
2026-02-17 10:35:03 +01:00
import type { HTMLAttributes } from "vue"
import { cn } from "@/lib/utils"
2025-10-20 08:57:51 +02:00
interface SkeletonProps {
2026-02-17 10:35:03 +01:00
class?: HTMLAttributes["class"]
2025-10-20 08:57:51 +02:00
}
const props = defineProps<SkeletonProps>()
</script>
<template>
<div
data-slot="skeleton"
:class="cn('animate-pulse rounded-md bg-primary/10', props.class)"
/>
</template>