based-auth
Version:
A Next.js/Node.js authentication and wallet API kit for Ethereum and Solana, with utilities for serialization and contract interaction, designed for serverless and API route usage.
11 lines (10 loc) • 369 B
TypeScript
import { default as React } from 'react';
export declare function OptionButton({ className, index, onClick, logo, logoKey, children, disabled, ...props }: {
className?: string;
index?: number;
onClick?: () => void;
logo?: string;
logoKey?: string;
children?: React.ReactNode;
disabled?: boolean;
}): import("react/jsx-runtime").JSX.Element;