UNPKG

@hhgtech/hhg-components

Version:
13 lines (12 loc) 373 B
import React from 'react'; import { LOCALE } from "../../../interfaces/types"; export type Legend = { text: string; 'z-score': string; color: string; }; export type BabyGrowthLegendProps = { legends: Array<Legend>; locale: LOCALE; }; export declare const BabyGrowthLegend: ({ legends, locale, }: BabyGrowthLegendProps) => React.JSX.Element;