mirror of
https://github.com/pocket-id/pocket-id.git
synced 2025-12-15 09:42:58 +03:00
24 lines
466 B
Svelte
24 lines
466 B
Svelte
|
|
<script lang="ts">
|
||
|
|
import type { HTMLAttributes } from "svelte/elements";
|
||
|
|
import { cn } from "$lib/utils/style.js";
|
||
|
|
|
||
|
|
type $$Props = HTMLAttributes<HTMLTableRowElement> & {
|
||
|
|
"data-state"?: unknown;
|
||
|
|
};
|
||
|
|
|
||
|
|
let className: $$Props["class"] = undefined;
|
||
|
|
export { className as class };
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<tr
|
||
|
|
class={cn(
|
||
|
|
"border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",
|
||
|
|
className
|
||
|
|
)}
|
||
|
|
{...$$restProps}
|
||
|
|
on:click
|
||
|
|
on:keydown
|
||
|
|
>
|
||
|
|
<slot />
|
||
|
|
</tr>
|