Skip to content

Commit

Permalink
Export ConfirmationModalProps
Browse files Browse the repository at this point in the history
The export was simply forgotten before.
  • Loading branch information
LukasKalbertodt committed Jul 1, 2024
1 parent c81da5b commit f623712
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/confirmationModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { ModalProps, ModalHandle, Modal, Spinner, Button, boxError } from ".";
import { currentRef } from "./util";


type ConfirmationModalProps = Omit<ModalProps, "closable" | "title"> & {
export type ConfirmationModalProps = Omit<ModalProps, "closable" | "title"> & {
title?: string;
/** What to display in the confirm button. A string can be enough. */
buttonContent: ReactNode;
Expand Down

0 comments on commit f623712

Please sign in to comment.