flbxcup/resources/js/components/ui/table/table-cell.svelte
2025-06-23 23:12:40 +02:00

20 lines
460 B
Svelte

<script lang="ts">
import { cn, type WithElementRef } from "@/lib/utils.js";
import type { HTMLTdAttributes } from "svelte/elements";
let {
ref = $bindable(null),
class: className,
children,
...restProps
}: WithElementRef<HTMLTdAttributes> = $props();
</script>
<td
bind:this={ref}
data-slot="table-cell"
class={cn("whitespace-nowrap p-2 align-middle [&:has([role=checkbox])]:pr-0", className)}
{...restProps}
>
{@render children?.()}
</td>