CoolFace
Datasetpublic

gradio/frontend

sourceHugging Faceupdated 17h agoView on Hugging Face
1likes442kdownloads
Example.svelte20 linesDownload Raw Back to simpledropdown
1<script lang="ts">2	export let value: string | null;3	export let type: "gallery" | "table";4	export let selected = false;5</script>6 7<div8	class:table={type === "table"}9	class:gallery={type === "gallery"}10	class:selected11>12	{value ? value : ""}13</div>14 15<style>16	.gallery {17		padding: var(--size-1) var(--size-2);18	}19</style>20 
gradio/frontend · CoolFace