We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cb857f commit fb44c2aCopy full SHA for fb44c2a
1 file changed
src/components/confirmation-dialog/confirmation-dialog.js
@@ -26,9 +26,10 @@ const ConfirmationDialog = ({
26
message,
27
title,
28
backdropContainerProps,
29
+ ...props
30
}) => {
31
return (
- <Dialog onEsc={handleDecline} backdropContainerProps={backdropContainerProps}>
32
+ <Dialog onEsc={handleDecline} backdropContainerProps={backdropContainerProps} {...props}>
33
<Content data-testid={dataTestId}>
34
<Header data-testid={`${dataTestId}-headerContainer`}>
35
<Flex data-testid={`${dataTestId}-header`} gap={2}>
0 commit comments