UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

14 lines (13 loc) 442 B
import type { ButtonProps } from '../../../../components/Button'; import type { Path } from '../../types'; export type IteratePushButtonProps = ButtonProps & { path?: Path; itemPath?: Path; pushValue: unknown | ((value: unknown) => void); /** * Used internally */ value?: unknown; }; declare function PushButton(props: IteratePushButtonProps): import("react/jsx-runtime").JSX.Element; export default PushButton;