UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

9 lines (8 loc) 392 B
import React 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?: React.ReactNode; }; declare function ButtonRow(props: FormButtonRowProps): import("react/jsx-runtime").JSX.Element; export default ButtonRow;