Implement unencrypted warning slate in rooms

This commit is contained in:
Germain Souquet 2021-06-10 11:14:43 +01:00
parent 4f649f290c
commit 7f3173f170
5 changed files with 35 additions and 15 deletions

View file

@ -14,13 +14,14 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
import React, {forwardRef, ReactNode} from "react";
import React, {forwardRef, ReactNode, ReactChildren} from "react";
import classNames from "classnames";
interface IProps {
className: string;
title: string;
subtitle?: ReactNode;
children?: ReactChildren;
}
const EventTileBubble = forwardRef<HTMLDivElement, IProps>(({ className, title, subtitle, children }, ref) => {