CoolFace
Datasetpublic

gradio/frontend

sourceHugging Faceupdated 2h agoView on Hugging Face
1likes413kdownloads
Example.svelte21 linesDownload Raw Back to html
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	class="prose"12>13	{@html value}14</div>15 16<style>17	.gallery {18		padding: var(--size-2);19	}20</style>21 
gradio/frontend · CoolFace