matrix-react-sdk
Version:
SDK for matrix.org using React
14 lines (13 loc) • 546 B
TypeScript
import React from "react";
import { NotificationState } from "../../../stores/notifications/NotificationState";
import { ButtonEvent } from "../elements/AccessibleButton";
interface ExtraTileProps {
isMinimized: boolean;
isSelected: boolean;
displayName: string;
avatar: React.ReactElement;
notificationState?: NotificationState;
onClick: (ev: ButtonEvent) => void;
}
export default function ExtraTile({ isSelected, isMinimized, notificationState, displayName, onClick, avatar, }: ExtraTileProps): JSX.Element;
export {};