/** * Internal dependencies */ import { HStack } from '../h-stack'; import { Text } from '../text'; import { Spacer } from '../spacer'; import { space } from '../ui/utils/space'; import { RangeControl, NumberControlWrapper } from './styles'; interface InputWithSliderProps { min: number; max: number; value: number; label: string; abbreviation: string; onChange: ( value: number ) => void; } export const InputWithSlider = ( { min, max, label, abbreviation, onChange, value, }: InputWithSliderProps ) => { return ( { abbreviation } } hideHTMLArrows /> ); };