Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415161718
  1. import * as React from 'react';
  2. import { BsPrefixComponent } from './helpers';
  3. export interface ProgressBarProps {
  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';
  12. }
  13. declare class ProgressBar extends BsPrefixComponent<'div', ProgressBarProps> {}
  14. export default ProgressBar;