@hhgtech/hhg-components
Version:
Hello Health Group common components
12 lines (11 loc) • 396 B
TypeScript
import React from 'react';
import { LOCALE } from "../../../interfaces/types";
import { TooltipProps } from 'recharts';
export type BabyGrowthTooltipProps = {
locale: LOCALE;
} & TooltipProps<string, string>;
export type LabelColorType = {
name: Array<string>;
color: string;
};
export declare const BabyGrowthTooltip: (props: BabyGrowthTooltipProps) => React.JSX.Element;