mirror of
https://github.com/maxdorninger/MediaManager.git
synced 2026-04-21 16:25:36 +02:00
17 lines
476 B
Svelte
17 lines
476 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>
|
|
|
|
<tfoot bind:this={ref} class={cn('bg-muted/50 font-medium', className)} {...restProps}>
|
|
{@render children?.()}
|
|
</tfoot>
|