mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-04-28 21:32:58 +00:00
14 lines
367 B
Svelte
14 lines
367 B
Svelte
<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>
|
|
|
|
<thead class={cn('[&_tr]:border-b', className)} {...$$restProps} on:click on:keydown>
|
|
<slot />
|
|
</thead>
|