@dynamic-labs/sdk-react-core
Version:
A React SDK for implementing wallet web3 authentication and authorization to your website.
12 lines (11 loc) • 362 B
TypeScript
import { FC } from 'react';
import type { ClassStyleProps } from '../../utils/types';
type InlineSubmitButtonProps = ClassStyleProps & {
isFocused: boolean;
isHovered: boolean;
highlighted: boolean;
disabled: boolean;
emailSubmitButtonInsideInput?: boolean;
};
export declare const InlineSubmitButton: FC<InlineSubmitButtonProps>;
export {};