Files
VRCX/src/components/ui/empty/EmptyDescription.vue
2026-01-22 21:24:26 +09:00

21 lines
448 B
Vue

<script setup>
import { cn } from '@/lib/utils';
defineProps({
class: { type: null, required: false }
});
</script>
<template>
<p
data-slot="empty-description"
:class="
cn(
'text-muted-foreground [&>a:hover]:text-primary text-sm/relaxed [&>a]:underline [&>a]:underline-offset-4',
$attrs.class ?? ''
)
">
<slot />
</p>
</template>