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

15 lines 400 B
import React, { memo } from 'react'; import { StyleSheet, Text } from 'react-native'; import { COLORS } from '../constants/colors'; const TextValue = ({ value }) => /*#__PURE__*/React.createElement(Text, { style: styles.text }, value); export default /*#__PURE__*/memo(TextValue); const styles = StyleSheet.create({ text: { color: COLORS.purple } }); //# sourceMappingURL=TextValue.js.map