@web3mq/react-components
Version:
web3mq-react-components
12 lines (11 loc) • 424 B
TypeScript
import React, { PropsWithChildren } from 'react';
import type { CommonUserInfoType } from '../Chat/hooks/useQueryUserInfo';
declare type IProps = {
userInfo?: CommonUserInfoType;
AvatarNode?: React.ReactNode;
isTab?: boolean;
isSelf?: boolean;
hasLogout?: boolean;
};
export declare const Profile: React.MemoExoticComponent<(props: PropsWithChildren<IProps>) => React.JSX.Element>;
export {};