decentraland-ui
Version:
Decentraland's UI components and styles
16 lines (13 loc) • 348 B
text/typescript
import { ChainId } from '@dcl/schemas'
export type ChainSelectorProps = {
selectedChain: ChainId
chainBeingConfirmed?: ChainId
chains: ChainId[]
onSelectChain: (chain: ChainId) => void
i18n: ChainSelectori18n
}
export type ChainSelectori18n = {
title: React.ReactNode
connected: React.ReactNode
confirmInWallet: React.ReactNode
}