mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-03-27 17:56:36 +00:00
14 lines
382 B
Svelte
14 lines
382 B
Svelte
<script lang="ts">
|
|
import type { HTMLAttributes } from "svelte/elements";
|
|
import { cn } from "$lib/utils/style.js";
|
|
|
|
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>
|