opnsense connections page ui improvements

This commit is contained in:
2024-11-02 01:53:11 -07:00
parent 922e4c0580
commit d526839bfa
13 changed files with 244 additions and 34 deletions

View File

@@ -0,0 +1,13 @@
<script lang="ts">
import type { HTMLAttributes } from "svelte/elements";
import { cn } from "$lib/utils.js";
type $$Props = HTMLAttributes<HTMLTableSectionElement>;
let className: $$Props["class"] = undefined;
export { className as class };
</script>
<tfoot class={cn("bg-muted/50 text-primary-foreground font-medium", className)} {...$$restProps}>
<slot />
</tfoot>