UNPKG

decentraland-ui

Version:

Decentraland's UI components and styles

15 lines (14 loc) 421 B
/// <reference types="react" /> import { ChainId } from '@dcl/schemas'; export declare type ChainSelectorProps = { selectedChain: ChainId; chainBeingConfirmed?: ChainId; chains: ChainId[]; onSelectChain: (chain: ChainId) => void; i18n: ChainSelectori18n; }; export declare type ChainSelectori18n = { title: React.ReactNode; connected: React.ReactNode; confirmInWallet: React.ReactNode; };