mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-03-11 22:15:35 +00:00
16 lines
410 B
Svelte
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>
|