UNPKG

cl-react-graph

Version:
14 lines (13 loc) 389 B
import { FC } from 'react'; import { EChartDirection } from '../BarChart'; import { ExtendedGroupItem } from './Bars/Bars'; interface IProps { direction: EChartDirection; label?: string; item: ExtendedGroupItem; fill?: string; inverse?: boolean; } export declare type TLabelComponent = (props: IProps) => JSX.Element; export declare const Label: FC<IProps>; export {};