UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

17 lines (16 loc) 600 B
import React from 'react'; import type { ComponentProps } from '../../types'; import { ButtonProps } from '../../../../components/button/Button'; export type Props = { /** * Show the submit indicator */ showIndicator?: boolean; } & ComponentProps & Omit<ButtonProps, 'variant'> & Partial<React.HTMLAttributes<HTMLButtonElement | HTMLAnchorElement>> & { variant?: 'send' | 'secondary'; }; declare function SubmitButton(props: Props): import("react/jsx-runtime").JSX.Element; declare namespace SubmitButton { var _supportsSpacingProps: boolean; } export default SubmitButton;