@hhgtech/hhg-components
Version:
Hello Health Group common components
13 lines (12 loc) • 373 B
TypeScript
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;