UNPKG

@hhgtech/hhg-components

Version:
14 lines (13 loc) 383 B
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 {};