mirror of
https://github.com/fawney19/Aether.git
synced 2026-01-03 16:22:27 +08:00
24 lines
410 B
Vue
24 lines
410 B
Vue
<script setup lang="ts">
|
|
import { cn } from '@/lib/utils'
|
|
import { computed } from 'vue'
|
|
|
|
interface Props {
|
|
class?: string
|
|
}
|
|
|
|
const props = defineProps<Props>()
|
|
|
|
const headClass = computed(() =>
|
|
cn(
|
|
'h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0',
|
|
props.class
|
|
)
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<th :class="headClass">
|
|
<slot />
|
|
</th>
|
|
</template>
|