mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-22 16:23:50 +02:00
16 lines
392 B
Vue
16 lines
392 B
Vue
<script setup>
|
|
import { cn } from '@/lib/utils';
|
|
|
|
const props = defineProps({
|
|
class: { type: null, required: false }
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div data-slot="table-container" class="relative w-full overflow-auto">
|
|
<table data-slot="table" :class="cn('w-full caption-bottom text-sm', props.class)">
|
|
<slot />
|
|
</table>
|
|
</div>
|
|
</template>
|