UNPKG

@particle-network/auth-core-modal

Version:

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

12 lines (11 loc) 322 B
import type { ReactNode } from 'react'; import React from 'react'; interface IProps { children?: ReactNode; leftContent?: ReactNode | string; rightContent?: ReactNode | string; displayBackBtn?: boolean; onBack?: any; } declare const Header: (props: IProps) => React.JSX.Element; export default Header;