@lobehub/charts
Version:
React modern charts components built on recharts
14 lines (13 loc) • 464 B
TypeScript
import { ReactNode } from 'react';
import { FlexboxProps } from 'react-layout-kit';
export interface DeltaBarProps extends FlexboxProps {
bgColors?: string;
color?: string;
isIncreasePositive?: boolean;
showAnimation?: boolean;
size?: number;
tooltip?: ReactNode;
value: number;
}
declare const DeltaBar: import("react").ForwardRefExoticComponent<DeltaBarProps & import("react").RefAttributes<HTMLDivElement>>;
export default DeltaBar;