mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-24 10:54:04 +08:00
1419538ea7
* asd * changes * fix everything * cleanup * add changeset * fix casing * lockfile * fix casing * fix ci, enable linting * fix test * add changeset * add changeset * delete changeset * fix dirs * fix casing * fix notebooks * fix casing * fix casing * fix casing * fix casing * fix casing * fix casing * fix casing * fix casing --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
11 lines
239 B
Svelte
11 lines
239 B
Svelte
<script lang="ts">
|
|
import { Block } from "@gradio/atoms";
|
|
export let elem_id: string;
|
|
export let elem_classes: string[];
|
|
export let visible = true;
|
|
</script>
|
|
|
|
<Block {elem_id} {elem_classes} {visible} explicit_call>
|
|
<slot />
|
|
</Block>
|