ModalProps
ModalProps
The properties for the modal component.
Signature
interface ModalProps {
    customId?: string;
    title: string;
    children?: MaybeArray<ModalKit['components'][number]>;
    onSubmit?: OnModalKitSubmit;
    onEnd?: OnModalKitEnd;
    onError?: EventInterceptorErrorHandler;
    options?: CommandKitModalBuilderInteractionCollectorDispatchContextData;
}