@rainbow-me/rainbowkit
Version:
The best way to connect a wallet
15 lines (14 loc) • 413 B
TypeScript
import React from 'react';
type Size = 'small' | 'medium' | 'large';
export declare function ActionButton({ disabled, href, label, onClick, rel, size, target, testId, type, }: {
href?: string;
label: string;
onClick?: () => void;
rel?: string;
size?: Size;
target?: string;
type?: 'primary' | 'secondary';
disabled?: boolean;
testId?: string;
}): React.JSX.Element;
export {};