UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

16 lines (15 loc) 510 B
import React from 'react'; import type { SpaceProps } from '../../../../components/Space'; import type { SubmitState } from '../../types'; export type Props = { state: SubmitState; label?: React.ReactNode; showLabel?: boolean; className?: string; children?: React.ReactNode; } & SpaceProps; declare function SubmitIndicator(props: Props): import("react/jsx-runtime").JSX.Element; declare namespace SubmitIndicator { var _supportsSpacingProps: boolean; } export default SubmitIndicator;