@hhgtech/hhg-components
Version:
Hello Health Group common components
14 lines (13 loc) • 383 B
TypeScript
import React from 'react';
import { BoxProps } from '@mantine/core';
import { ButtonProps, PopoverProps } from "../../../mantine";
type Props = {
fillInfo: {
phone?: string;
email?: string;
};
popoverProps?: PopoverProps;
submitProps?: ButtonProps;
} & BoxProps;
export declare const Form: (props: Props) => React.JSX.Element;
export {};