UNPKG

@particle-network/auth-core-modal

Version:

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

11 lines (10 loc) 270 B
import React from 'react'; interface IProps { children?: React.ReactNode; onClose: () => void; visible: boolean; title?: string; [key: string]: any; } declare const ParticleDrawer: (props: IProps) => React.JSX.Element; export default ParticleDrawer;