DefinitelyTyped/reactstrap/lib/Progress.d.ts
Marco Falkenberg 8934f1102f Add typings for reactstrap (#15357)
* Add typings for reactstrap

* Make lint happy

* Do not „double-reference“ to React types
2017-03-24 08:36:17 -07:00

15 lines
312 B
TypeScript

interface Props {
bar?: boolean;
multi?: boolean;
tag?: string;
value?: string | number;
max?: string | number;
animated?: boolean;
striped?: boolean;
color?: string;
className?: string;
barClassName?: string;
}
declare var Progress: React.StatelessComponent<Props>;
export default Progress;