A slider component.
minmaxvaluestep1dotsfalsedisabledfalse<Slider
min={0}
max={100}
step={1}
bind:value
/>This example also uses the onchange callback instead of binding.
<Slider
min={0}
max={10}
dots
value={progress}
onchange={value => progress = value}
/>