File size: 627 Bytes
74e7e71 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
<script lang="ts">
import { BlockLabel, Empty } from "@gradio/atoms";
import { File } from "@gradio/icons";
import FilePreview from "./FilePreview.svelte";
let {
value,
label,
show_label,
selectable,
i18n,
height,
on_select,
on_download
} = $props();
</script>
<BlockLabel
{show_label}
float={value === null}
Icon={File}
label={label || "File"}
/>
{#if value && (Array.isArray(value) ? value.length > 0 : true)}
<FilePreview
{i18n}
{selectable}
on:select={on_select}
on:download={on_download}
{value}
{height}
/>
{:else}
<Empty unpadded_box={true} size="large"><File /></Empty>
{/if}
|