@mysten/dapp-kit
Version:
A collection of React hooks and components for interacting with the Sui blockchain and wallets.
9 lines (8 loc) • 347 B
TypeScript
import type { ButtonHTMLAttributes } from 'react';
declare const Button: import("react").ForwardRefExoticComponent<{
asChild?: boolean;
} & ButtonHTMLAttributes<HTMLButtonElement> & {
variant?: "outline" | "primary" | undefined;
size?: "md" | "lg" | undefined;
} & import("react").RefAttributes<HTMLButtonElement>>;
export { Button };