@hhgtech/hhg-components
Version:
Hello Health Group common components
18 lines (17 loc) • 566 B
TypeScript
import React from 'react';
import { SiteType } from "../../../interfaces/types";
import { PregWeightInfo } from "../../../together/interfaces/types";
export type InputError = {
weightBefore: string;
weight: string;
height: string;
};
export type Props = {
info: PregWeightInfo;
errorMessage?: InputError;
onChange?: (o: PregWeightInfo) => void;
isMobile?: boolean;
siteType?: SiteType;
};
declare const PWGInputForm: ({ siteType, info, onChange, errorMessage, }: Props) => React.JSX.Element;
export { PWGInputForm };