gtp-final / gradio /js /checkbox /Example.svelte
calvesca's picture
Upload folder using huggingface_hub
0bd62e5 verified
raw
history blame contribute delete
372 Bytes
<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>