gradio/js/number/Example.svelte
Abubakar Abid d7095c4699
Number example fix (#7294)
* fix

* add changeset

* fix flaky functional test

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2024-02-05 08:55:10 -08:00

20 lines
335 B
Svelte

<script lang="ts">
export let value: string | 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 : ""}
</div>
<style>
.gallery {
padding: var(--size-1) var(--size-2);
}
</style>