UNPKG

react-native-ui-lib

Version:

[![SWUbanner](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner-direct.svg)](https://stand-with-ukraine.pp.ua)

14 lines (13 loc) 540 B
import React, { ReactElement } from 'react'; import { ViewProps, StyleProp, ViewStyle, GestureResponderEvent } from 'react-native'; export interface Props extends ViewProps { animatedStyle?: any; disabled?: boolean; maximumTrackTintColor?: string; minimumTrackTintColor?: string; trackStyle?: StyleProp<ViewStyle>; renderTrack?: () => ReactElement | ReactElement[]; onPress?: ((event: GestureResponderEvent) => void) | undefined; } declare const Track: (props: Props) => React.JSX.Element; export default Track;