UNPKG

@dnb/eufemia

Version:

DNB Eufemia Design System UI Library

8 lines (7 loc) 406 B
import type { ButtonProps } from '../../../../components/Button'; import type { DataValueReadWriteComponentProps } from '../../types'; export type IterateRemoveButtonProps = ButtonProps & DataValueReadWriteComponentProps<unknown[]> & { showConfirmDialog?: boolean; }; declare function RemoveButton(props: IterateRemoveButtonProps): import("react/jsx-runtime").JSX.Element; export default RemoveButton;