Files
Caramel-CRM/resources/js/components/ui/crm-table/TableRow.vue
T
2026-02-17 10:35:03 +01:00

15 lines
416 B
Vue

<script setup lang="ts">
import type { HTMLAttributes } from "vue"
import { cn } from "@/lib/utils"
const props = defineProps<{
class?: HTMLAttributes["class"]
}>()
</script>
<template>
<tr :class="cn('hover:bg-accent hover:dark:bg-background/75 border-b transition-colors data-[state=selected]:bg-muted select-none md:select-auto cursor-default bg-background', props.class)">
<slot />
</tr>
</template>