UNPKG

@lobehub/charts

Version:

React modern charts components built on recharts

14 lines (13 loc) 472 B
import { FlexboxProps } from '@lobehub/ui'; import { ReactNode } from 'react'; 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<Omit<DeltaBarProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>; export default DeltaBar;