2020-11-04 17:00:07 +00:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2020-11-04 17:00:07 +00:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
2024-09-09 14:57:16 +01:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2020-11-04 17:00:07 +00:00
|
|
|
*/
|
|
|
|
|
|
2023-02-13 11:39:16 +00:00
|
|
|
import React, { forwardRef, ReactNode, ReactChild } from "react";
|
2020-11-04 17:00:07 +00:00
|
|
|
import classNames from "classnames";
|
|
|
|
|
|
|
|
|
|
interface IProps {
|
|
|
|
|
className: string;
|
|
|
|
|
title: string;
|
2022-01-25 13:10:17 +00:00
|
|
|
timestamp?: JSX.Element;
|
2020-11-04 17:00:07 +00:00
|
|
|
subtitle?: ReactNode;
|
2023-02-13 11:39:16 +00:00
|
|
|
children?: ReactChild;
|
2020-11-04 17:00:07 +00:00
|
|
|
}
|
|
|
|
|
|
2022-01-25 13:10:17 +00:00
|
|
|
const EventTileBubble = forwardRef<HTMLDivElement, IProps>(
|
|
|
|
|
({ className, title, timestamp, subtitle, children }, ref) => {
|
2020-11-05 16:27:41 +00:00
|
|
|
return (
|
|
|
|
|
<div className={classNames("mx_EventTileBubble", className)} ref={ref}>
|
2020-11-04 17:00:07 +00:00
|
|
|
<div className="mx_EventTileBubble_title">{title}</div>
|
|
|
|
|
{subtitle && <div className="mx_EventTileBubble_subtitle">{subtitle}</div>}
|
|
|
|
|
{children}
|
2022-01-25 13:10:17 +00:00
|
|
|
{timestamp}
|
2020-11-04 17:00:07 +00:00
|
|
|
</div>
|
|
|
|
|
);
|
2020-11-05 16:27:41 +00:00
|
|
|
},
|
|
|
|
|
);
|
2020-11-04 17:00:07 +00:00
|
|
|
|
|
|
|
|
export default EventTileBubble;
|