UNPKG

@dynamic-labs/sdk-react-core

Version:

A React SDK for implementing wallet web3 authentication and authorization to your website.

9 lines (8 loc) 291 B
import { FC, PropsWithChildren } from 'react'; import { TransitionProps } from '../Transition/transition.type'; export type ModalProps = { className?: string; isShown?: boolean; transitionProps?: TransitionProps; }; export declare const Modal: FC<PropsWithChildren<ModalProps>>;