mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-27 23:46:34 +01:00
17 lines
556 B
TypeScript
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;
|