travel-steps/summer2024-frontend/src/components/ui/table/TableHead.vue
Nicolas Froger ddc6c64f0f
init backend, added admin page in front
Signed-off-by: Nicolas Froger <nicolas@kektus.xyz>
2024-07-25 03:00:51 +02:00

20 lines
355 B
Vue

<script setup>
import { cn } from "@/lib/utils";
const props = defineProps({
class: { type: null, required: false },
});
</script>
<template>
<th
:class="
cn(
'h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0',
props.class,
)
"
>
<slot />
</th>
</template>