Base properties for the XnsNameCapture component related to the UI and Events

interface XnsNameCaptureBaseProps {
    autoFocus?: boolean;
    buttonText?: string;
    defaultXnsName?: string;
    errorUi?: "alert" | "toast";
    mobileButtonText?: string;
    onNameChange?: ((name: string) => void);
    showSecondary?: ReactNode;
}

Hierarchy (view full)

Properties

autoFocus?: boolean
buttonText?: string
defaultXnsName?: string
errorUi?: "alert" | "toast"
mobileButtonText?: string
onNameChange?: ((name: string) => void)
showSecondary?: ReactNode