Skip to content

Commit

Permalink
types(ModalTopActions): fix type of close event for top actions
Browse files Browse the repository at this point in the history
the only case is mouse event when clicking the "x" close button
  • Loading branch information
YossiSaadi committed Sep 10, 2024
1 parent bb7dbe0 commit bb227ee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ export interface ModalTopActionsProps {
renderAction?: (color?: ModalTopActionsButtonColor) => React.ReactElement<typeof MenuButton | typeof IconButton>;
color?: ModalTopActionsColor;
closeButtonAriaLabel?: string;
onClose?: React.MouseEventHandler<HTMLDivElement>;
onClose?: (e: React.MouseEvent<HTMLButtonElement>) => void;
}

0 comments on commit bb227ee

Please sign in to comment.