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