@hhgtech/hhg-components
Version:
Hello Health Group common components
17 lines (16 loc) • 493 B
TypeScript
import React from 'react';
import { SiteType } from "../../../interfaces/types";
import { LOCALE } from "../../../interfaces/types/Locale";
export type BabyGrowthRecordProps = {
measurementDate: Date;
weight: number;
height: number;
head: number;
onEdit: VoidFunction;
birthday: Date;
dateFormat?: string;
locale?: LOCALE;
siteType?: SiteType;
};
declare const BabyGrowthRecord: React.FC<BabyGrowthRecordProps>;
export { BabyGrowthRecord };