@moderntribe/wme-ui
Version:
Components and hooks to build the best UX/UI admin wizards
13 lines • 494 B
TypeScript
import type React from 'react';
import type { PropsWithChildren, ReactNode } from 'react';
import type { FormControlUnstyledProps } from '@mui/base';
type FormFieldProps = FormControlUnstyledProps & {
errorMessage?: string;
field?: ReactNode;
helperText?: string | React.ReactElement;
id?: string;
label?: string | React.ReactElement;
};
declare const FormField: React.FC<PropsWithChildren<FormFieldProps>>;
export default FormField;
//# sourceMappingURL=form-field.d.ts.map