CoolFace
Datasetpublic

gradio/frontend

sourceHugging Faceupdated 13h agoView on Hugging Face
1likes403kdownloads
Example.svelte20 linesDownload Raw Back to fallback
1<script lang="ts">2	export let value: string;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}13</div>14 15<style>16	.gallery {17		padding: var(--size-1) var(--size-2);18	}19</style>20 
gradio/frontend · CoolFace