goofish / web-ui /src /components /ui /table /TableCell.vue
host1syan's picture
Upload 212 files
5378afe verified
<script setup lang="ts">
import { cn } from '@/lib/utils'
const props = defineProps<{
class?: string
}>()
</script>
<template>
<td :class="cn('p-4 align-middle [&:has([role=checkbox])]:pr-0', props.class)">
<slot />
</td>
</template>