mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-07-25 04:45:46 +00:00
Updates
This commit is contained in:
Vendored
+19
@@ -0,0 +1,19 @@
|
||||
import type { Group, IFavoriteChainProps, IFavoriteChainsStorage } from './types.js';
|
||||
import React from 'react';
|
||||
interface Props {
|
||||
affinities: Record<string, string>;
|
||||
apiUrl: string;
|
||||
children?: React.ReactNode;
|
||||
className?: string;
|
||||
index: number;
|
||||
isSelected: boolean;
|
||||
favoriteChains: IFavoriteChainsStorage;
|
||||
toggleFavoriteChain: (chainInfo: IFavoriteChainProps) => void;
|
||||
setApiUrl: (network: string, apiUrl: string) => void;
|
||||
setGroup: (groupIndex: number) => void;
|
||||
value: Group;
|
||||
highlightColor: string;
|
||||
}
|
||||
declare function GroupDisplay({ affinities, apiUrl, children, className, favoriteChains, highlightColor, index, isSelected, setApiUrl, setGroup, toggleFavoriteChain, value: { header, isSpaced, networks } }: Props): React.ReactElement<Props>;
|
||||
declare const _default: React.MemoExoticComponent<typeof GroupDisplay>;
|
||||
export default _default;
|
||||
Reference in New Issue
Block a user