frontend / 6.0.0-dev.5 /checkbox /Example.svelte
gradio-pr-bot's picture
Upload folder using huggingface_hub
cb5eb2f verified
<script lang="ts">
export let value: boolean | null;
export let type: "gallery" | "table";
export let selected = false;
</script>
<div
class:table={type === "table"}
class:gallery={type === "gallery"}
class:selected
>
{value !== null ? value.toLocaleString() : ""}
</div>
<style>
.gallery {
padding: var(--size-1) var(--size-2);
}
</style>