UNPKG

@pushchain/ui-kit

Version:

Push Chain is a true universal L1 that is 100% EVM compatible. It allows developers to deploy once and make their apps instantly compatible with users from all other L1s (Ethereum, Solana, etc) with zero on-chain code change.

12 lines (11 loc) 370 B
import React, { FC } from 'react'; export type ConnectPushWalletButtonProps = { uid?: string; connectButtonText?: string; loadingComponent?: React.ReactNode; style?: React.CSSProperties; customComponent?: React.ReactNode; className?: string; }; declare const ConnectWalletButton: FC<ConnectPushWalletButtonProps>; export { ConnectWalletButton };