UNPKG

react-native-elements

Version:
14 lines (13 loc) 512 B
import { StyleProp, ViewStyle, ViewProps } from 'react-native'; import { FullTheme } from '../config'; import { RneFunctionComponent } from '../helpers'; export declare type LinearProgressProps = { value?: number; variant?: 'determinate' | 'indeterminate'; color?: 'primary' | 'secondary' | string; trackColor?: string; style?: StyleProp<ViewStyle>; theme?: FullTheme; } & ViewProps; declare const LinearProgress: RneFunctionComponent<LinearProgressProps>; export default LinearProgress;