UNPKG

@particle-network/auth-core-modal

Version:

Auth Core provides MPC (Multi-Party Computation)-based threshold signatures.

12 lines (11 loc) 278 B
import React from 'react'; export interface WrongPasswordInfo { visible: boolean; accountFrozen?: { seconds: number; }; } declare const WrongPasswordModal: ({ info }: { info: WrongPasswordInfo; }) => React.JSX.Element; export default WrongPasswordModal;