UNPKG

@dynamic-labs/sdk-react-core

Version:

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

9 lines (8 loc) 311 B
import { FC } from 'react'; export type DynamicBridgeWidgetVariant = 'modal' | 'dropdown'; export type DynamicBridgeWidgetProps = { className?: string; variant?: DynamicBridgeWidgetVariant; iconVariant?: 'wallet' | 'chain'; }; export declare const DynamicBridgeWidget: FC<DynamicBridgeWidgetProps>;