@material-ui/core
Version:
React components that implement Google's Material Design.
35 lines (30 loc) • 822 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
export interface LinearProgressProps
extends StandardProps<React.HTMLAttributes<HTMLDivElement>, LinearProgressClassKey> {
color?: 'primary' | 'secondary';
value?: number;
valueBuffer?: number;
variant?: 'determinate' | 'indeterminate' | 'buffer' | 'query';
}
export type LinearProgressClassKey =
| 'root'
| 'colorPrimary'
| 'colorSecondary'
| 'determinate'
| 'indeterminate'
| 'buffer'
| 'query'
| 'dashed'
| 'dashedColorPrimary'
| 'dashedColorSecondary'
| 'bar'
| 'barColorPrimary'
| 'barColorSecondary'
| 'bar1Indeterminate'
| 'bar2Indeterminate'
| 'bar1Determinate'
| 'bar1Buffer'
| 'bar2Buffer';
declare const LinearProgress: React.ComponentType<LinearProgressProps>;
export default LinearProgress;