UNPKG

@hhgtech/hhg-components

Version:
11 lines (10 loc) 491 B
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 };