UNPKG

@dynamic-labs/sdk-react-core

Version:

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

18 lines (17 loc) 520 B
import { FC, ReactElement, ReactNode } from 'react'; import { Iconic } from '@dynamic-labs/iconic'; import { Icon } from '../../../../shared'; type Props = { children: ReactNode; className?: string; dataTestId?: string; icon?: Icon | Iconic | ReactElement; showSpinnerInIcon?: boolean; onClose?: (e: { stopPropagation: VoidFunction; }) => void; title?: string; }; export declare const DefaultPromptLayout: FC<Props>; export declare const DefaultPromptModal: FC<Props>; export {};