@rsksmart/rif-ui
Version:
Exposes common components to be re used in RIF projects
17 lines (16 loc) • 470 B
TypeScript
import { SliderProps } from '@material-ui/core/Slider';
import { FC } from 'react';
export interface RangeSliderWithInputsProps extends SliderProps {
values: {
start: number;
end: number;
};
unit?: string;
handleChange: ({ min, max }: {
min: any;
max: any;
}) => void;
className?: string;
}
declare const RangeSliderWithInputs: FC<RangeSliderWithInputsProps>;
export default RangeSliderWithInputs;