UNPKG

450 BTypeScriptView Raw
1import { StyleProp, ViewStyle, ViewProps } from 'react-native';
2import { RneFunctionComponent } from '../helpers';
3export declare type LinearProgressProps = {
4 value?: number;
5 variant?: 'determinate' | 'indeterminate';
6 color?: 'primary' | 'secondary' | string;
7 trackColor?: string;
8 style?: StyleProp<ViewStyle>;
9} & ViewProps;
10declare const LinearProgress: RneFunctionComponent<LinearProgressProps>;
11export default LinearProgress;