UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

14 lines (13 loc) 487 B
import React from 'react'; import type { SpaceProps } from '../../../../components/Space'; import type { SubmitState } from '../../types'; export type FormSubmitIndicatorProps = { state: SubmitState; id?: string; label?: React.ReactNode; showLabel?: boolean; className?: string; children?: React.ReactNode; } & SpaceProps; declare function SubmitIndicator(props: FormSubmitIndicatorProps): import("react/jsx-runtime").JSX.Element; export default SubmitIndicator;