web3-mq-react
Version:
web3-mq-react-components
11 lines (10 loc) • 363 B
TypeScript
import React from 'react';
export declare type ContactPreviewUIComponentProps = {
Avatar?: React.ComponentType;
contact?: any;
active?: boolean;
avatarUrl?: string;
title?: string;
setActiveContact?: (contact: any) => void;
};
export declare const ContactPreviewMessenger: (props: ContactPreviewUIComponentProps) => JSX.Element;