UNPKG

593 BTypeScriptView Raw
1import * as React from 'react';
2import { CSSModule } from './utils';
3
4export interface ProgressProps extends React.HTMLAttributes<HTMLElement> {
5 [key: string]: any;
6 bar?: boolean;
7 multi?: boolean;
8 tag?: string;
9 value?: string | number;
10 min?: string | number;
11 max?: string | number;
12 animated?: boolean;
13 striped?: boolean;
14 color?: string;
15 cssModule?: CSSModule;
16 barClassName?: string;
17 barStyle?: React.CSSProperties;
18 barAriaValueText?: string;
19 barAriaLabelledBy?: string;
20}
21
22declare class Progress extends React.Component<ProgressProps> {}
23export default Progress;