mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-03 01:50:59 +08:00
d7095c4699
* fix * add changeset * fix flaky functional test --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
20 lines
335 B
Svelte
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>
|