react-native-elements
Version:
React Native Elements & UI Toolkit
14 lines (13 loc) • 512 B
TypeScript
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;