@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
14 lines (13 loc) • 403 B
TypeScript
import { FC, ReactNode } from 'react';
import { DynamicWidgetViews } from '../../context/DynamicWidgetContext.types';
export type OptionsSwitcherOption = {
value: string;
label: string;
icon: ReactNode;
copykey?: string;
};
export declare const BottomNavBar: FC<{
value: DynamicWidgetViews;
onChange: (view: DynamicWidgetViews) => void;
options: OptionsSwitcherOption[];
}>;