matrix-react-sdk
Version:
SDK for matrix.org using React
14 lines (13 loc) • 436 B
TypeScript
import { JSX } from "react";
interface ThreadsActivityCentreProps {
/**
* Display the `Treads` label next to the icon.
*/
displayButtonLabel?: boolean;
}
/**
* Display in a popup the list of rooms with unread threads.
* The popup is displayed when the user clicks on the `Threads` button.
*/
export declare function ThreadsActivityCentre({ displayButtonLabel }: ThreadsActivityCentreProps): JSX.Element;
export {};