UNPKG

react-native-sticky-range-slider

Version:

[React Native | TypeScript] A pure TypeScript component offering a customizable range slider optimized for performance. It supports dragging functionalities for selecting a range of values, with values that smoothly follow the thumb. This component is ful

14 lines 432 B
import React, { memo } from 'react'; import { StyleSheet, View } from 'react-native'; import { COLORS } from '../constants/colors'; const RailSelected = () => /*#__PURE__*/React.createElement(View, { style: styles.railSelected }); export default /*#__PURE__*/memo(RailSelected); const styles = StyleSheet.create({ railSelected: { height: 3, backgroundColor: COLORS.purple } }); //# sourceMappingURL=RailSelected.js.map