dAppBooster
    Preparing search index...
    SignButton: FC<SignButtonProps> = ...

    SignButton component that allows users to sign a message.

    SignButton component props.

    The message to sign.

    The content to display in the button.

    Whether the button is disabled.

    Callback function called when the message is signed.

    Callback function called when an error occurs.

    The label for the button (alternative to children).

    The label for the button when the message is being signed.

    Additional props inherited from Chakra UI ButtonProps.

    <SignButton
    message="Hello, world!"
    onError={(error) => console.error(error)}
    onSign={(signature) => console.log(signature)}
    />