frontend / 6.23.1 /paramviewer /Example.svelte
gradio-pr-bot's picture
Upload folder using huggingface_hub
929a5be verified
Raw
History Blame Contribute Delete
378 Bytes
<script lang="ts">
let {
value,
type,
selected = false
}: {
value: string;
type: "gallery" | "table";
selected?: boolean;
} = $props();
</script>
<div
class:table={type === "table"}
class:gallery={type === "gallery"}
class:selected
>
<pre>{JSON.stringify(value, null, 2)}</pre>
</div>
<style>
.gallery {
padding: var(--size-1) var(--size-2);
}
</style>