mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-15 02:11:15 +08:00
8dd6f4bc19
* handle null examples * add changeset * add changeset * lint * merge conflict * fixes * add changeset * stories * feedback * examples --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
23 lines
388 B
Svelte
23 lines
388 B
Svelte
<script lang="ts">
|
|
export let value: string | null;
|
|
export let type: "gallery" | "table";
|
|
export let selected = false;
|
|
</script>
|
|
|
|
<div
|
|
style="background-color: {value ? value : 'black'}"
|
|
class:table={type === "table"}
|
|
class:gallery={type === "gallery"}
|
|
class:selected
|
|
/>
|
|
|
|
<style>
|
|
div {
|
|
width: var(--size-10);
|
|
height: var(--size-10);
|
|
}
|
|
.table {
|
|
margin: 0 auto;
|
|
}
|
|
</style>
|