UNPKG

@dynamic-labs/sdk-react-core

Version:

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

9 lines (8 loc) 317 B
import { ComponentPropsWithoutRef } from 'react'; type Props = ComponentPropsWithoutRef<'button'> & { initialState?: boolean; onClick?: (hidden: boolean) => void; className?: string; }; export declare const ToggleVisibilityButton: ({ initialState, onClick, className, }: Props) => JSX.Element; export {};