mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-05-03 18:21:20 +00:00
13 lines
373 B
Svelte
13 lines
373 B
Svelte
<script lang="ts">
|
|
import { cn } from "$lib/utils";
|
|
import type { HTMLAttributes } from "svelte/elements";
|
|
|
|
type $$Props = HTMLAttributes<HTMLTableSectionElement>;
|
|
|
|
let className: $$Props["class"] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<tfoot class={cn("bg-primary font-medium text-primary-foreground", className)} {...$$restProps}>
|
|
<slot />
|
|
</tfoot>
|