react-toolbox-legacy
Version:
Unofficial fork of the react-toolbox package, compatible with React v16
11 lines (9 loc) • 394 B
JavaScript
import { themr } from 'react-css-themr-legacy';
import { SLIDER } from '../identifiers.js';
import { ProgressBar } from '../progress_bar';
import { Input} from '../input';
import { sliderFactory } from './Slider.js';
import theme from './theme.scss';
const ThemedSlider = themr(SLIDER, theme)(sliderFactory(ProgressBar, Input));
export default ThemedSlider;
export { ThemedSlider as Slider };