UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

9 lines (8 loc) 399 B
import type { ReactNode } from 'react'; import type { ComponentProps } from '../../types'; /** Props for the Form.ButtonRow component which provides consistent spacing for form action buttons. */ export type FormButtonRowProps = ComponentProps & { children?: ReactNode; }; declare function ButtonRow(props: FormButtonRowProps): import("react/jsx-runtime").JSX.Element; export default ButtonRow;