DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
295 Bytes
<script>import { getCtx } from "../ctx.js";
export let asChild = false;
export let el = void 0;
const { getAttrs } = getCtx();
const attrs = getAttrs("grid-row");
</script>
{#if asChild}
<slot {attrs} />
{:else}
<tr bind:this={el} {...$$restProps} {...attrs}>
<slot {attrs} />
</tr>
{/if}