Skip to content

Commit

Permalink
alphabetical export
Browse files Browse the repository at this point in the history
  • Loading branch information
0xAlec committed Aug 9, 2024
1 parent 4351b4d commit 6732b79
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions src/wallet/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,25 +99,25 @@ export type WalletDropdownDisconnectReact = {
/**
* Note: exported as public Type
*/
export type WalletDropdownLinkReact = {
children: string;
export type WalletDropdownFundLinkReact = {
className?: string; // Optional className override for the element
href: string;
icon?: 'wallet' & ReactNode;
icon?: ReactNode;
rel?: string;
target?: string;
text?: string;
type?: 'window' | 'tab';
size?: 's' | 'm' | 'l';
};

/**
* Note: exported as public Type
*/
export type WalletDropdownFundLinkReact = {
export type WalletDropdownLinkReact = {
children: string;
className?: string; // Optional className override for the element
href: string;
icon?: ReactNode;
icon?: 'wallet' & ReactNode;
rel?: string;
target?: string;
text?: string;
type?: 'window' | 'tab';
size?: 's' | 'm' | 'l';
};
};

0 comments on commit 6732b79

Please sign in to comment.