UNPKG

577 BTypeScriptView Raw
1import React from 'react';
2import { BsPrefixPropsWithChildren } from './helpers';
3export interface ProgressBarProps extends React.HTMLAttributes<HTMLDivElement>, BsPrefixPropsWithChildren {
4 min?: number;
5 now?: number;
6 max?: number;
7 label?: React.ReactNode;
8 srOnly?: boolean;
9 striped?: boolean;
10 animated?: boolean;
11 variant?: 'success' | 'danger' | 'warning' | 'info' | string;
12 isChild?: boolean;
13}
14declare const ProgressBar: React.ForwardRefExoticComponent<ProgressBarProps & React.RefAttributes<HTMLDivElement>>;
15export default ProgressBar;