summaryrefslogtreecommitdiffstats
path: root/apps/web-shared/src/components/table/thead.svelte
blob: aa20bf06f0488dc3c6275b621d2f2548f7dd28c6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<script lang="ts">
    import TRow from "./trow.svelte";
</script>


<thead class="int-table__header {$$restProps.class ?? ''}">
<TRow>
    <slot/>
</TRow>
</thead>