14 lines
236 B
Vue
14 lines
236 B
Vue
<script setup>
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps({
|
|
class: { type: null, required: false },
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<thead :class="cn('[&_tr]:border-b', props.class)">
|
|
<slot />
|
|
</thead>
|
|
</template>
|