UNPKG

@kadconsulting/dry

Version:
10 lines (9 loc) 308 B
/// <reference types="react" /> export interface ConfirmationDialogProps extends React.HTMLAttributes<HTMLElement> { passProps?: object; /** Support @testing-library/react `screen.getByTestId` */ 'data-testid'?: string; message: string; onConfirm: () => void; onCancel: () => void; }