@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
12 lines (11 loc) • 506 B
TypeScript
import { PropsWithChildren } from 'react';
import { UseTransitionEvents } from '../../utils/hooks/useTransition';
import { ModalComponentProps } from './ModalComponent';
type PortalProps = PropsWithChildren & ModalComponentProps & {
elementId?: string;
isShown?: boolean;
transitionEvents?: UseTransitionEvents;
zIndex?: number;
};
export declare const Portal: ({ children, isShown, handleClose, withBackdrop, zIndex, transitionEvents, elementId, }: PortalProps) => JSX.Element;
export {};