Files
Speedtest-Tracker/conf/site/node_modules/react-bootstrap/cjs/ProgressBar.d.ts
2020-07-08 12:08:03 +01:00

17 lines
556 B
TypeScript

import React from 'react';
import { BsPrefixPropsWithChildren } from './helpers';
export interface ProgressBarProps extends BsPrefixPropsWithChildren {
style?: any;
min?: number;
now?: number;
max?: number;
label?: React.ReactNode;
srOnly?: boolean;
striped?: boolean;
animated?: boolean;
variant?: 'success' | 'danger' | 'warning' | 'info' | string;
isChild?: boolean;
}
declare const ProgressBar: React.ForwardRefExoticComponent<ProgressBarProps & React.RefAttributes<HTMLDivElement>>;
export default ProgressBar;