miru/src/lib/components/ui/table/table.svelte
2025-06-24 16:51:27 +02:00

16 lines
410 B
Svelte

<script lang='ts'>
import type { HTMLTableAttributes } from 'svelte/elements'
import { cn } from '$lib/utils.js'
type $$Props = HTMLTableAttributes
let className: $$Props['class'] = undefined
export { className as class }
</script>
<div class='relative w-full overflow-auto h-full'>
<table class={cn('w-full caption-bottom text-sm', className)} {...$$restProps}>
<slot />
</table>
</div>