@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
12 lines (11 loc) • 343 B
TypeScript
import { ReactNode } from 'react';
type Props = {
alignment?: 'top' | 'bottom';
children: ReactNode;
content: ReactNode;
onClose: VoidFunction;
showMenu: boolean;
title?: ReactNode;
};
export declare const DotsMenuWrapper: ({ children, onClose, content, showMenu, title, alignment, }: Props) => JSX.Element;
export {};