frontend / 6.0.0-dev.5 /box /Index.svelte
gradio-pr-bot's picture
Upload folder using huggingface_hub
312ad61 verified
raw
history blame contribute delete
259 Bytes
<script lang="ts">
import { Block } from "@gradio/atoms";
export let elem_id: string;
export let elem_classes: string[];
export let visible: boolean | "hidden" = true;
</script>
<Block {elem_id} {elem_classes} {visible} explicit_call>
<slot />
</Block>