Hue_Input #

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

With bind:value
#

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

With oninput
#

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

With children
#

<Hue_Input>
	Some colorful hue input
</Hue_Input>