UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

11 lines (10 loc) 487 B
import type { HTMLProps, RefObject } from 'react'; import type { SpacingProps } from '../../../../shared/types'; export type FormElementProps = Omit<HTMLProps<HTMLFormElement>, 'ref' | 'autoComplete'> & SpacingProps & { ref?: RefObject<HTMLFormElement>; /** * Set to `false` to allow the browser's native form submission. */ preventDefaultOnSubmit?: boolean; }; export default function FormElement(props: FormElementProps): import("react/jsx-runtime").JSX.Element;