interface SignButtonPropsProps {
    label?: string;
    labelSigning?: string;
    message: string;
    onError?: ((error: Error) => void);
    onSign?: ((signature: string) => void);
}

Hierarchy

  • Omit<ComponentProps<"button">, "onError">
    • SignButtonPropsProps

Properties

label?: string
labelSigning?: string
message: string
onError?: ((error: Error) => void)
onSign?: ((signature: string) => void)