Spaces:
Running
Running
| <script lang="ts"> | |
| import { cn, type WithElementRef } from "$lib/utils.js"; | |
| import type { HTMLAttributes } from "svelte/elements"; | |
| let { | |
| ref = $bindable(null), | |
| class: className, | |
| children, | |
| ...restProps | |
| } | |
| </script> | |
| <thead | |
| bind:this={ref} | |
| data-slot="table-header" | |
| class={cn("[&_tr]:border-b", className)} | |
| {...restProps} | |
| > | |
| {@render children?.()} | |
| </thead> | |