UNPKG

@lobehub/charts

Version:

React modern charts components built on recharts

17 lines (16 loc) 550 B
import { FlexboxProps } from '@lobehub/ui'; import { ReactNode } from 'react'; export interface MarkerBarProps extends FlexboxProps { bgColors?: string; color?: string; markerTooltip?: ReactNode; maxValue?: number; minValue?: number; rangeColors?: string; rangeTooltip?: ReactNode; showAnimation?: boolean; size?: number; value: number; } declare const MarkerBar: import("react").ForwardRefExoticComponent<Omit<MarkerBarProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>; export default MarkerBar;