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.
16 lines
566 B
16 lines
566 B
import * as React from 'react';
|
|
import { BsPrefixProps } from './helpers';
|
|
export interface ProgressBarProps extends React.HTMLAttributes<HTMLDivElement>, BsPrefixProps {
|
|
min?: number;
|
|
now?: number;
|
|
max?: number;
|
|
label?: React.ReactNode;
|
|
visuallyHidden?: 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;
|