btc-wallet
Version:
BTC Wallet is a toolkit that enables Bitcoin usage on the NEAR blockchain through the Satoshi protocol.
11 lines (10 loc) • 385 B
TypeScript
import { type CSSProperties, type ReactNode } from 'react';
declare const Button: ({ children, isLoading, isDisabled, onClick, className, style, }: {
children: ReactNode;
isLoading?: boolean;
isDisabled?: boolean;
onClick?: () => void;
className?: string;
style?: CSSProperties | undefined;
}) => import("react/jsx-runtime").JSX.Element;
export default Button;