UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 396 B
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;