mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-05 09:12:27 +08:00
21 lines
348 B
Vue
21 lines
348 B
Vue
<script setup lang="ts">
|
|
import { cn } from '@/lib/utils'
|
|
import { computed } from 'vue'
|
|
|
|
interface Props {
|
|
class?: string
|
|
}
|
|
|
|
const props = defineProps<Props>()
|
|
|
|
const cellClass = computed(() =>
|
|
cn('p-4 align-middle [&:has([role=checkbox])]:pr-0', props.class)
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<td :class="cellClass">
|
|
<slot />
|
|
</td>
|
|
</template>
|