interface ConfirmCreateOrderModalProps {
    buttonLabel: string;
    content: ReactNode;
    isOpen?: boolean;
    onClose: (() => void);
    title: string;
}

Properties

buttonLabel: string

Button label

content: ReactNode

Bottom content for modal

isOpen?: boolean

Used to show modal

onClose: (() => void)

Callback for cancelling modal

Type declaration

    • (): void
    • Callback for cancelling modal

      Returns void

title: string

Title for modal

Generated using TypeDoc