mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-19 17:23:33 +03:00
14 lines
362 B
Svelte
14 lines
362 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import type { HTMLAttributes } from "svelte/elements";
|
||
|
|
import { cn } from "$lib/utils/style.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>
|