mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-27 23:41:21 +00:00
13 lines
353 B
Svelte
13 lines
353 B
Svelte
<script lang="ts">
|
|
import { cn } from '$lib/utils';
|
|
import type { HTMLAttributes } from 'svelte/elements';
|
|
|
|
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>
|