{ input.focus(); if (rtl && value < max) { value += step; } else if (value > min) { value -= step; } }} >
{@html chevronLeft}
(focused = true)} on:focusout={() => (focused = false)} />
{ input.focus(); if (rtl && value > min) { value -= step; } else if (value < max) { value += step; } }} >
{@html chevronRight}