UNPKG

react-native-modern-elements

Version:

A modern, customizable UI component library for React Native

27 lines (26 loc) 1.03 kB
import React from "react"; type RangeSliderProps = { sliderWidth: number; min: number; max: number; step?: number; mode?: "range" | "single"; thumbValue?: "parcentage" | "Value"; thumbStyle?: "one" | "two" | "three" | "four" | "five"; onValueChange: (range: { min: number; max: number; }) => void; TrackthumbLabelBackgroundColor?: string; TrackHeight?: number; defaultTrackColor?: string; trickBorderRadious?: number; textColor?: string; fontSize?: number; priceSymbols?: string; formatPrices?: boolean; defaultLeftPercent?: number; defaultRightPercent?: number; }; declare const _default: React.MemoExoticComponent<({ sliderWidth, min, max, step, mode, onValueChange, thumbStyle, thumbValue, TrackthumbLabelBackgroundColor, TrackHeight, defaultTrackColor, trickBorderRadious, textColor, fontSize, priceSymbols, defaultLeftPercent, defaultRightPercent, formatPrices, }: RangeSliderProps) => React.JSX.Element>; export default _default;