22 lines
506 B
Svelte
22 lines
506 B
Svelte
<script lang="ts">
|
|
import type { WithElementRef } from 'bits-ui';
|
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
import { cn } from '$lib/utils.js';
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
children,
|
|
...restProps
|
|
}: WithElementRef<HTMLAttributes<HTMLTableSectionElement>> = $props();
|
|
</script>
|
|
|
|
<tfoot
|
|
bind:this={ref}
|
|
data-slot="table-footer"
|
|
class={cn('bg-muted/50 border-t font-medium [&>tr]:last:border-b-0', className)}
|
|
{...restProps}
|
|
>
|
|
{@render children?.()}
|
|
</tfoot>
|