mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-10 04:19:32 +00:00
15 lines
294 B
Vue
15 lines
294 B
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from "vue";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<tbody :class="cn('[&_tr:last-child]:border-0', props.class)">
|
|
<slot />
|
|
</tbody>
|
|
</template>
|