@hhgtech/hhg-components
Version:
Hello Health Group common components
11 lines (10 loc) • 491 B
TypeScript
import React from 'react';
import { DefaultProps } from '@mantine/core';
import { BabyPoopPage } from "../../../../together/interfaces/types";
import { BabyPoopFormProps } from "../../healthTools/form/babyPoopForm";
export interface BabyPoopEmbedProps extends DefaultProps {
babyPoopPage: BabyPoopPage;
formProps?: BabyPoopFormProps;
}
declare const BabyPoopEmbed: ({ babyPoopPage, formProps, ...props }: BabyPoopEmbedProps) => React.JSX.Element;
export { BabyPoopEmbed };