mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-04-19 13:32:04 +00:00
14 lines
358 B
Svelte
14 lines
358 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>
|
|
|
|
<tbody class={cn('[&_tr:last-child]:border-0', className)} {...$$restProps}>
|
|
<slot />
|
|
</tbody>
|