@lobehub/charts
Version:
React modern charts components built on recharts
13 lines (12 loc) • 450 B
TypeScript
import { FlexboxProps } from '@lobehub/ui';
import { ReactNode } from 'react';
export interface ProgressBarProps extends FlexboxProps {
bgColors?: string;
color?: string;
showAnimation?: boolean;
size?: number;
tooltip?: ReactNode;
value: number;
}
declare const ProgressBar: import("react").ForwardRefExoticComponent<Omit<ProgressBarProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
export default ProgressBar;