HueInput #

import HueInput from '@ryanatkn/fuz/HueInput.svelte';

With bind:value
#

<HueInput bind:value />
bind:value === 180

With oninput
#

<HueInput oninput={(v) => (value_from_oninput = v)} />
value_from_oninput === undefined

With children
#

<HueInput> Some colorful hue input </HueInput>