UNPKG

starklink

Version:

> A library of react components for Follow or chat on Web3MQ

15 lines (14 loc) 558 B
import React, { FunctionComponent } from 'react'; import '@web3mq/react-components/dist/css/index.css'; import { WalletType } from '@web3mq/client'; export declare type FollowButtonProps = { username?: string; userid?: string; btnText?: string; targetWalletType: WalletType; targetWalletAddress: string; followBtn?: React.ReactNode; }; export declare type ReadyStepType = 'follow'; export declare type ModalType = 'error' | 'success' | 'loading'; export declare const FollowButton: FunctionComponent<FollowButtonProps>;