mirror of
https://github.com/zhigang1992/react-native-paper.git
synced 2026-06-16 20:01:13 +08:00
14 lines
314 B
TypeScript
14 lines
314 B
TypeScript
import * as React from 'react';
|
|
import { ThemeShape } from '../types';
|
|
|
|
export interface ProgressBarProps {
|
|
progress: number;
|
|
animating?: boolean;
|
|
indeterminate?: boolean;
|
|
color?: string;
|
|
style?: any;
|
|
theme?: ThemeShape;
|
|
}
|
|
|
|
export declare class ProgressBar extends React.Component<ProgressBarProps> {}
|