UNPKG

@dynamic-labs/sdk-react-core

Version:

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

13 lines (12 loc) 424 B
import { ReactNode } from 'react'; import { CopyKey } from '../../shared'; type Variant = 'error' | 'info' | 'success'; type Props = { children: ReactNode; className?: string; isMultiWalletError?: boolean; variant?: Variant; withIcon?: boolean; }; export declare const ErrorContainer: ({ children, className, isMultiWalletError, withIcon, variant, copykey, }: Props & CopyKey) => JSX.Element; export {};