mirror of
https://github.com/vrcx-team/VRCX.git
synced 2026-04-06 00:32:02 +02:00
14 lines
310 B
Vue
14 lines
310 B
Vue
<script setup>
|
|
import { cn } from '@/lib/utils';
|
|
|
|
const props = defineProps({
|
|
class: { type: null, required: false }
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<caption data-slot="table-caption" :class="cn('text-muted-foreground mt-4 text-sm', props.class)">
|
|
<slot />
|
|
</caption>
|
|
</template>
|