UNPKG

@dynamic-labs/sdk-react-core

Version:

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

14 lines (13 loc) 357 B
interface ButtonProps { active: boolean; handleButtonClick: VoidFunction; name: string; } interface Props { disabled?: boolean; firstButton: ButtonProps; secondButton: ButtonProps; thirdButton?: ButtonProps; } export declare const Switch: ({ disabled, firstButton, secondButton, thirdButton, }: Props) => JSX.Element; export {};