@particle-network/auth-core-modal
Version:
Auth Core provides MPC (Multi-Party Computation)-based threshold signatures.
17 lines (16 loc) • 466 B
TypeScript
import React from 'react';
interface IProps {
children?: React.ReactNode;
visible?: boolean;
containerSelector?: any;
title?: string | any;
modalProps?: any;
locked?: 'modal' | 'drawer';
drawerProps?: any;
className?: string;
closable?: boolean;
onOpen?: () => void;
onClose?: () => void;
}
declare const ParticleModal: React.ForwardRefExoticComponent<IProps & React.RefAttributes<unknown>>;
export default ParticleModal;