my_gradio / js /colorpicker /Example.svelte
xray918's picture
Upload folder using huggingface_hub
0ad74ed verified
raw
history blame contribute delete
388 Bytes
<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>