gradio / js /colorpicker /Example.svelte
mindmime's picture
Upload folder using huggingface_hub
a03b3ba verified
<script lang="ts">
export let value: string;
export let type: "gallery" | "table";
export let selected = false;
</script>
<div
style="background-color: {value}"
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>