@hhgtech/hhg-components
Version:
Hello Health Group common components
11 lines (10 loc) • 553 B
TypeScript
import React from 'react';
import { BabyGrowthFormField } from "../../../interfaces/types";
import { HealthToolFormWrapperProps } from "../../molecules/healthTools/formWrapper";
import { ButtonProps } from "../../../mantine";
export type BabyGrowthFormProps = {
onSubmit: (value: BabyGrowthFormField) => void;
currentUrl?: string;
submitProps?: ButtonProps;
} & HealthToolFormWrapperProps;
export declare const BabyGrowthForm: ({ onSubmit, formLayout, submitProps, currentUrl, ...rest }: BabyGrowthFormProps) => React.JSX.Element;