Squash merge rely-on-nostrmarket-to-publish into main

This commit is contained in:
padreug 2025-10-08 09:19:07 +02:00
parent 08b172ab34
commit c90def94a7
23 changed files with 1739 additions and 239 deletions

View file

@ -0,0 +1,22 @@
<script setup lang="ts">
import type { HTMLAttributes } from "vue"
import { cn } from "@/lib/utils"
const props = defineProps<{
class?: HTMLAttributes["class"]
}>()
</script>
<template>
<td
data-slot="table-cell"
:class="
cn(
'p-2 align-middle whitespace-nowrap [&:has([role=checkbox])]:pr-0 [&>[role=checkbox]]:translate-y-[2px]',
props.class,
)
"
>
<slot />
</td>
</template>