22 lines
475 B
Svelte
22 lines
475 B
Svelte
<script lang="ts">
|
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
import type { WithElementRef } from 'bits-ui';
|
|
import { cn } from '$lib/utils.js';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
children,
|
|
...restProps
|
|
}: WithElementRef<HTMLAttributes<HTMLTableSectionElement>> = $props();
|
|
</script>
|
|
|
|
<tbody
|
|
bind:this={ref}
|
|
data-slot="table-body"
|
|
class={cn('[&_tr:last-child]:border-0', className)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
</tbody>
|