mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
19 lines
409 B
Svelte
19 lines
409 B
Svelte
<script lang="ts">
|
|
import { cn } from "$lib/utils.js";
|
|
import type { HTMLThAttributes } from "svelte/elements";
|
|
|
|
type $$Props = HTMLThAttributes;
|
|
|
|
let className: $$Props["class"] = undefined;
|
|
export { className as class };
|
|
</script>
|
|
|
|
<th
|
|
class={cn(
|
|
"h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0",
|
|
className
|
|
)}
|
|
{...$$restProps}
|
|
>
|
|
<slot />
|
|
</th>
|