@rainbow-me/rainbowkit
Version:
The best way to connect a wallet
11 lines (10 loc) • 315 B
TypeScript
import React from 'react';
interface ProfileDetailsActionProps {
label: string;
action?: () => void;
icon: JSX.Element;
url?: string;
testId?: string;
}
export declare function ProfileDetailsAction({ action, icon, label, testId, url, }: ProfileDetailsActionProps): React.JSX.Element;
export {};