Files
ThreadNet-Web/src/components/views/messages/EventTileBubble.tsx
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
979 B
TypeScript
Raw Normal View History

/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
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.
*/
2023-02-13 11:39:16 +00:00
import React, { forwardRef, ReactNode, ReactChild } from "react";
import classNames from "classnames";
interface IProps {
className: string;
title: string;
timestamp?: JSX.Element;
subtitle?: ReactNode;
2023-02-13 11:39:16 +00:00
children?: ReactChild;
}
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}>
<div className="mx_EventTileBubble_title">{title}</div>
{subtitle && <div className="mx_EventTileBubble_subtitle">{subtitle}</div>}
{children}
{timestamp}
</div>
);
2020-11-05 16:27:41 +00:00
},
);
export default EventTileBubble;