mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
16 lines
577 B
TypeScript
16 lines
577 B
TypeScript
import React from 'react';
|
|
import { BsPrefixPropsWithChildren } from './helpers';
|
|
export interface ProgressBarProps extends React.HTMLAttributes<HTMLDivElement>, BsPrefixPropsWithChildren {
|
|
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;
|