UNPKG

@particle-network/auth-core-modal

Version:

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

13 lines (12 loc) 354 B
import React from 'react'; type Prop = { className?: string; maxLength?: number; defaultValue?: string; onChange?: (value: string) => void; onPressEnter?: (event: any) => void; onBlur?: (event: any) => void; autoFocus?: boolean; }; declare const InputPassword: (prop: Prop) => React.JSX.Element; export default InputPassword;