@hhgtech/hhg-components
Version:
Hello Health Group common components
10 lines (9 loc) • 535 B
TypeScript
import React from 'react';
import { BabyGrowthFormProps } from "../../../babyGrowth/babyGrowthForm";
import { BabyGrowthContent } from "../../../../types";
import { HealthToolFormWrapperProps } from "../../healthTools/formWrapper";
export type BabyGrowthCardEmbedProps = {
babyGrowthContent: BabyGrowthContent | null;
formProps?: BabyGrowthFormProps;
} & HealthToolFormWrapperProps;
export declare const BabyGrowthCardEmbed: ({ babyGrowthContent, formProps, ...props }: BabyGrowthCardEmbedProps) => React.JSX.Element;