mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-20 15:23:50 +02:00
21 lines
448 B
Vue
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>
|