mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-21 15:53:50 +02:00
21 lines
449 B
Vue
21 lines
449 B
Vue
<script setup>
|
|
import { cn } from '@/lib/utils';
|
|
|
|
const props = defineProps({
|
|
class: { type: null, required: false }
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<td
|
|
data-slot="table-cell"
|
|
:class="
|
|
cn(
|
|
'p-2 align-middle whitespace-nowrap [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]',
|
|
props.class
|
|
)
|
|
">
|
|
<slot />
|
|
</td>
|
|
</template>
|