web3-mq-react
Version:
web3-mq-react-components
15 lines (14 loc) • 427 B
TypeScript
import React from 'react';
import type { Client } from 'web3-mq';
declare type FollowRequestButtonGroupProps = {
client: Client;
containerId?: string;
warnText?: string;
showFollow?: boolean;
showBlockBtn?: boolean;
userId?: string;
onFollow?: () => void;
onCancel?: () => void;
};
export declare const FollowRequestButtonGroup: React.FC<FollowRequestButtonGroupProps>;
export {};