HueInput #
import HueInput from '@ryanatkn/fuz/HueInput.svelte';With bind:value #
bind:value<HueInput bind:value /> bind:value === 180With oninput #
oninput<HueInput
oninput={(v) => (value_from_oninput = v)}
/> value_from_oninput === undefinedWith children #
children<HueInput>
Some colorful hue input
</HueInput>