Add disable quote formating option

This commit is contained in:
kwaroran
2024-08-24 15:57:57 +09:00
parent 628b17510d
commit d38a9f3d85
6 changed files with 26 additions and 9 deletions

View File

@@ -1,11 +1,13 @@
<script lang="ts">
import ColorPicker from 'svelte-awesome-color-picker';
export let value = '#000000';
export let nullable = false;
</script>
<div class="cl rounded-full bg-white">
<ColorPicker
label="" bind:hex={value} on:input
nullable={nullable}
/>
</div>