UNPKG

matrix-react-sdk

Version:
14 lines (13 loc) 546 B
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 {};