@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
14 lines (13 loc) • 488 B
TypeScript
import type { ReactNode } from 'react';
import type { SpaceProps } from '../../../../components/Space';
import type { SubmitState } from '../../types';
export type FormSubmitIndicatorProps = {
state: SubmitState;
id?: string;
label?: ReactNode;
showLabel?: boolean;
className?: string;
children?: ReactNode;
} & SpaceProps;
declare function SubmitIndicator(props: FormSubmitIndicatorProps): import("react/jsx-runtime").JSX.Element;
export default SubmitIndicator;